Via that code i have extracted all desired text out of a html document
private void RunThroughSearch(string url) { private IWebDriver driver; driver = n
Find the element first, then use IJavaScriptExecutor to get the inner HTML.
var element = driver.FindElements(By.ClassName("sa_wr")); IJavaScriptExecutor js = driver as IJavaScriptExecutor; if (js != null) { string innerHtml = (string)js.ExecuteScript("return arguments[0].innerHTML;", element); }