Answers for "double click action in selenium"

0

double click action in selenium

To perform any actions against web element using actions class, 
 we need to locate the element first: 
WebElement el = driver.findELement 
Actions actions = new Actions (driver).perform actions.doubleClick(el).perform() 
actions.moveTo(el).perform actions.doubleClick.perform 
actions.moveTo(el).doubleClick().build.perform()
Posted by: Guest on June-15-2021

Browse Popular Code Answers by Language