Selenium Java - Actions Class
What will happen when the following Selenium Java code is executed?
WebElement element = driver.findElement(By.id("menu"));
new Actions(driver).contextClick(element).perform();