Interview Questions

Selenium WebDriver - How to perform double click using WebDriver ?

Selenium WebDriver Interview question and Answers


(Continued from previous question...)

Selenium WebDriver - How to perform double click using WebDriver ?

use doubleClick() method.
Syntax- Actions act = new Actions(driver); act.doubleClick(webelement);
Syntax- Actions act = new Actions(driver);
act.doubleClick(webelement);

(Continued on next question...)

Other Interview Questions