doubleClick not working in Firefox

521 Views Asked by At

I need to double click on a button using Selenium IDE. I have used below code.

 <tr>
<td>doubleClick</td>
<td>name=c</td>
<td></td>
</tr>

I have tried replacing the command with doubleClickAndWait also.But on replay the double click is found not happening.

I want to click on button named Save with below html code

 <input class="btn btn-primary" type="submit" value="Save" name="c"/>
1

There are 1 best solutions below

1
On

In Java for example, that would be something like:

Actions action = new Actions(driver);
action.moveToElement(yourElement).doubleClick().build().perform();