Answers for "how to mouse element in selenium"

0

how to mouse element in selenium

By using Actions class

WebElement element = driver.findElement(By.xpath("xpath"));
Actions action = new Actions(driver);
action.moveToElement(element).perform();
Posted by: Guest on December-08-2020

Code answers related to "how to mouse element in selenium"

Browse Popular Code Answers by Language