Selenium Java - Actions Class
What will be the result of the following Selenium Java code snippet?
Actions action = new Actions(driver); action.moveToElement(element).click().perform();
