Selenium Java - Actions Class
What will be the output of the following Selenium Java code snippet if the element is present and clickable?
WebElement element = driver.findElement(By.id("btn"));
new Actions(driver).doubleClick(element).perform();
System.out.println("Double click performed");