0 votes
in Selenium by

Identify the correct code snippet to double click an element using selenium from the following:

a) WebElement el = driver.findElement(By.id(“Element”));

     Actions builder = new Actions(driver)

     Builder.doubleClick().build().perform()

b) WebElement el = driver.findElement(by.id(“ElementID”))

     Actions builder = new Actions(driver0;

     Buider.doubleClick().build()

c) WebElement el = driver.findElemet(by.id(“ElementID”))

     Actions builder = new Actions(driver)

     Buider.doubleClick().build()

d) WebElement el = driver.findElement(By.id(“ElementID”)

     Actions builder = new Actions(driver)

     Builder.doubleClick(el).build()perform()

1 Answer

0 votes
by
WebElement el = driver.findElement(By.id(“ElementID”)

     Actions builder = new Actions(driver)

     Builder.doubleClick(el).build()perform()

Related questions

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