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 do a FindElement(By.tag("body")) to return a list of WebElements and then parse the results as you suggest.