How might you reenact the right-click activity in WebDriver?

710    Asked by DavidEdmunds in QA Testing , Asked on Jan 14, 2020
Answered by David Edmunds

You can utilize the Actions class highlights.

Actions test = new Actions(driver);

test.moveToElement(element).perform();

test.contextClick().perform();



Your Answer

Interviews

Parent Categories