So I am looking to use IE.au3 to click on a specific button in an element.
The only part I am unsure of is how to get the _IEaction click to only click on the button with a value of 1.
here is the HTML code for the button, and one of the button I do not wish to click
<button name="option" type="submit" value="1">Yes</button>
<button name="option" type="submit" value="2">No</button>
I do not want it to just search for "yes" as there could be multiple on the same page and that would defeat the purpose of it choosing that specific value.