Selenium Java - Actions Class
Given the following code:
What is the expected outcome?
Actions actions = new Actions(driver);
WebElement handle = driver.findElement(By.id("handle"));
actions.clickAndHold(handle).moveByOffset(100, 0).release().perform();What is the expected outcome?
