将Web Elements添加到我的列表需要很长时间。我想念什么?

时间:2019-06-17 17:02:50

标签: c# web-scraping

我想将某些链接文本的元素保存到列表中,但是当我运行此代码时,这会花费很多时间,而且运行起来似乎很慢。

static IWebDriver driver = null;
public static IList<string> linkList = new List<string>();

static void Main()
{
    readLinks();
}

public static void readLinks()
{
    IList<IWebElement> elementList = driver. 
        FindElements(By.LinkText("Click Here")).ToList();

    foreach (IWebElement ele in elementList)
    {
        String eleHref = ele.GetAttribute("href");
        linkList.Add(eleHref);
    }
}

0 个答案:

没有答案