Answers

Question and Answer:

  Home  Automation

⟩ Tell us can you write the code to double click an element in Selenium?

Code to double click an element in Selenium:

Actions action = new Actions(driver);

WebElement element=driver.findElement(By.id("elementId"));

action.doubleClick(element).perform();

 202 views

More Questions for you: