Javascrpit button I'd like to click athough it's in a table:
<table>
<tr>
<td height="20" align="center" nowrap style="color:#0000FF; cursor:pointer; border: 1 solid #426996; background-color: #FAFAFF;"
onClick="Initial();"
onMouseOver="javascript:{style.backgroundColor='#426996'; style.color='#FFFFFF'}"
onMouseOut="javascript:{style.backgroundColor='#FFFFFF'; style.color='#0000FF'}">
<font face="Verdana, Arial, Helvetica, sans-serif" size="1"><b> New Incident </b></font>
</td>
<td width="4"></td>
There are four more "buttons" here but I'm unable to click any of them. It seem the only thing that sepearate the buttons from on another is the onClick javascript event. I've tried using xpath but i just cant seem to find the element. I've tried this...
ie.button(:xpath => "//td[@onClick='Initial();']".exists?
ie.link(:xpath => "//td[@onClick='Initial();']".exists?
and they return false.
I think once this element is found i can just use the .fire_event('onClick') or .click and it should work i just can't seem to find it.