Selenium Java - Actions Class
What will happen when the following Selenium Java code runs?
Actions actions = new Actions(driver);
WebElement box = driver.findElement(By.id("box"));
actions.clickAndHold(box).pause(Duration.ofSeconds(2)).release().perform();