09-04-2008 03:30 PM
I am trying to program a click to the submit/apply button on a web page of a product I am trying to test. The HTML code defines the buttons as follows:
<!-- buttons table starts here -->
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><input type="submit" name="Button" value="Apply" class="button" /></td>
<td width="10"><spacer width="10" height="10"></spacer></td>
<td><input type="reset" name="Button" value="Cancel" class="button" /></td>
<td width="10"><spacer width="10" height="10"></spacer></td>
<td><input type="submit" name="Button" value="Help" class="button" /></td>
<td width="10"><spacer width="10" height="10"></spacer></td>
<td> </td>
</tr>
</table>
<!-- buttons table ends here -->
09-04-2008 04:21 PM