Interview Questions

Explain using Webdriver how you can perform double click ?

Selenium WebDriver Interview question and Answers


(Continued from previous question...)

Explain using Webdriver how you can perform double click ?

You can perform double click by using
Syntax- Actions act = new Actions (driver);
act.doubleClick(webelement);

(Continued on next question...)

Other Interview Questions