I am looking to click a button on a webpage. The button is located on form1 and does not have a specific ID. Below is the html for the button:
<input style="width: 100px;" onclick="javascript: jsSearch();" type="button" value=" Search ">
my line of code that I am using is:
$IE.Document.getElementById(“???”).Click()
Is there a way to tell this to look for form1 and click the search button?
Thank you,