|
Selenium WebDriver - How to hover the mouse on an element ?
Selenium WebDriver Interview question and Answers
(Continued from previous question...)
Selenium WebDriver - How to hover the mouse on an element ?
Actions act = new Actions(driver); act.moveToElement(webelement); //webelement on which you want to move cursor
Actions act = new Actions(driver);
act.moveToElement(webelement); //webelement on which you want to move cursor
(Continued on next question...)
Other Interview Questions
|