Selenium Java - Actions Class
Consider this code:
Actions actions = new Actions(driver);
WebElement el = driver.findElement(By.cssSelector(".btn"));
actions.contextClick(el).perform(); What is the expected behavior?