Selenium Java - Actions Class
Consider this code snippet:
What is the effect of this code?
Actions actions = new Actions(driver);
WebElement button = driver.findElement(By.id("btn"));
actions.moveToElement(button).click().perform();What is the effect of this code?
