Selenium Java - Actions Class
What will be the behavior of the following Selenium Java code?
Actions actions = new Actions(driver);
WebElement icon = driver.findElement(By.id("icon"));
actions.clickAndHold(icon).pause(Duration.ofSeconds(3)).release().perform();