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