I basically have a web-browser control that is going through and automatically completing some forms, it’s been a breeze so far, however I’ve gotten to a form that does not have the “submit ” or “reset” button labelled with ID or Name. (I need to be able to click both) Example:
Submit Button
<td align="right" valign="middle" class="LeftSide" style="padding-right: 20; padding-top: 10;"><button class="Search" type="submit" tabindex="7"><b>Search</b></button></td>
Reset Button
<td align="left" valign="middle" class="RightSide" style="padding-left: 20; padding-top: 10;" colspan="2"><button class="Search" type="reset" tabindex="8"><b>Clear</b></button></td>
How would i search the HtmlDocument for these button’s and click them? They’re nested as the following:
<body><table><form><tr><td><button>'s
something like that, maybe ?
Usage