Answers for "mouse over selenium"

0

how to hover mouse over an 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

Python Answers by Framework

Browse Popular Code Answers by Language