Selenium Java - Actions Class
Consider this code:
Actions actions = new Actions(driver);
WebElement link = driver.findElement(By.linkText("Home"));
actions.doubleClick(link);What will be the result when this code runs?