0 votes
in Selenium by
How to mouse hover over a web element?

1 Answer

0 votes
by
Actions class utility is used to hover over a web element in Selenium WebDriver

Instantiate Actions class.

    Actions action = new Actions(driver);

In this scenario, we hover over search box of a website

  actions.moveToElement(driver.findElement(By.id("id of the searchbox"))).perform();

Master important testing concepts such as TestNG, Selenium IDE, Selenium Grid, Selenium WebDriver.

Related questions

0 votes
asked Aug 22, 2019 in Selenium by john ganales
+1 vote
asked Aug 22, 2019 in Selenium by john ganales
...