Selenium IDE: clearing a textbox
I need to know how can I clear a textbox in Selenium IDE.
I have tried sendKeys command with no luck.
+3
David
source
to share
1 answer
Use "type" and leave blank for the value.
<tr>
<td>type</td>
<td>id=someID</td>
<td></td>
</tr>
+5
DMart
source
to share