Using Selenium how would you perform a Right Click?
Anoniem
I said, "there is an option in selenium that you wrap driver that that gives you the new methods such as right click.". In the real world I would just look it up in the selenium documentation. CORRECT ANSWER: new Actions(driver).ContextClick(element).Perform();