我正在尝试从网页上的Sub Header元素中检索和存储文本。
页面上的HTML如下:
<h5 class="page-sub-header-com page-sub-header-subtext">Customer #8107 - NGP_APPLICATION_017</h5>
我只想检索文字“客户#8107 - NGP_APPLICATION_017”。
先谢谢
答案 0 :(得分:1)
使用cssSelector
这应该很容易By css = By.CssSelector("h5.page-sub-header-com.page-sub-header-subtext");
string element = Driver.FindElement(css).Text;
答案 1 :(得分:0)
Saifur提供的解决方案
By css = By.CssSelector("h5.page-sub-header-com.page-sub-header-subtext");
string element = Driver.FindElement(css).Text;