L21.1: Actions class Example #3

PHOTO EMBED

Thu Oct 19 2023 02:11:06 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

Actions a = new Actions(driver);
 
//Right click on element
WebElement button = driver.findElement(By.xpath("locator"));
 
a.contextClick(button).perform();
content_copyCOPY