I want to extract some information from the DOM with Selenium. I\'m using the C# WebDriver.
Looking at the IWebElement interface you can easily extract a given attri
You can try this:
Actions newTab = new Actions(web driver); newTab.ContextClick(element).SendKeys(Keys.ArrowDown).SendKeys(Keys.ArrowDown).SendKeys(Keys.Return).Build().Perform();