Selenium Java - Actions Class
Examine the following Selenium Java code snippet:
Actions actions = new Actions(driver);
WebElement elem = driver.findElement(By.id("submit"));
actions.doubleClick();What is the issue with this code?