Selenium - Get elements html rather Text Value

前端 未结 3 2190
我在风中等你
我在风中等你 2021-02-18 18:35

Via that code i have extracted all desired text out of a html document

private void RunThroughSearch(string url)
{
    private IWebDriver driver;
    driver = n         


        
3条回答
  •  广开言路
    2021-02-18 18:51

    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);
    }
    

提交回复
热议问题