How might you reenact the right-click activity in WebDriver?
You can utilize the Actions class highlights.
Actions test = new Actions(driver);
test.moveToElement(element).perform();
test.contextClick().perform();