我想将某些链接文本的元素保存到列表中,但是当我运行此代码时,这会花费很多时间,而且运行起来似乎很慢。
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);
}
}