Problem: Cant click on this element named 'BT_SEARCH'
<tr>
<td ...>
<input type="submit" name="BT_SEARCH" value="Hae" onclick="document.forms['DForm'].elements['LPAGE'].value=1">
</td>
</tr>
click 'Hae' returns: undefined method `click' for #Object:...
click_button 'Hae' returns: Unable to find button "Hae"...
click_link 'Hae' returns: Unable to find link "Hae"...
find(:xpath, "//input[@name='BT_SEARCH']").click doesnt seem to find the element.
I'm unable to modify the source, and there's no id or class tags available. Additionally the page uses ASP which I assume is causing the problem.