Selenium Java - Actions Class
What will be the outcome of executing the following Selenium Java code?
WebElement element = driver.findElement(By.id("contextMenu"));
new Actions(driver).contextClick(element).perform();