C#应用Selenium:获取网页元素的方法
2021-03-01 06:26
标签:class ring css style tor cto lin tag 获取网页 1、根据ID 2、根据链接文本 3、根据元素内容 4、根据类名。需要说明的是,之所以使用CSS Selector方法,是为了应对className中间有空格的情况 5、根据标签名字 C#应用Selenium:获取网页元素的方法 标签:class ring css style tor cto lin tag 获取网页 原文地址:https://www.cnblogs.com/huzhongqiang/p/14398536.htmlIWebElement FindElementById(string id)
IWebElement FindElementByLinkText(string linkText);
IWebElement FindElementByXPath(string xpath);
//例子
this.Driver.FindElementByXPath($"//*[text()=\"{xpath}\"]");
IWebElement FindElementByCssSelector(string cssSelector);
//示例
this.Driver.FindElementByCssSelector($"[class=\"{className}\"]");
IWebElement FindElementByTagName(string tagName);
文章标题:C#应用Selenium:获取网页元素的方法
文章链接:http://soscw.com/index.php/essay/58432.html