EDIT What I want to do is set the below button to "yes" on page load. The code should run in a Tampermonkey script.
I tried the below, but it doesn't work ("Cannot set property 'value' of null"):
document.querySelector('.ant-click-animating-without-extra-node').value = "false";
I only found remotely related posts like this that talk about buttons in forms, not lists.
So here's the HTML (which I can't change as such):
<li class="ant-list-item activeRisk">
<div class="ant-list-item-main">
<div class="ant-list-item-meta m-l-mxl">
<div class="ant-list-item-meta-content">
<h4 class="ant-list-item-meta-title">
<span>Does this acquire personal information about the user?</span>
</h4>
</div>
</div>
</div>
<div class="ant-list-item-extra">
<button type="button" class="ant-btn failTest p-l-lg p-r-lg optimus-text-caps answerButton ant-
btn-round ant-btn-sm" ant-click-animating-without-extra-node="false">
<span>Yes</span>
</button>
<button type="button" class="ant-btn null p-l-lg p-r-lg optimus-text-caps answerButton ant-btn-
round ant-btn-sm">
<span>No</span>
</button>
</div>
</li>