我想为两个Web元素编写相对Xpath

时间:2019-05-05 08:10:00

标签: xpath

我想为以下网络元素创建相对路径

由于它的应用程序非常旧,因此很难在浏览器控制台上验证我的xpath。

  1. 我想将Web元素扩展到表格的“所有者”列下的文本。 I want to reach the web element to the text under "Owner" column of the table

  2. 我想使用“专业责任”表中的第二个选项。 I want to Reach to the second option in the Table "Professional Liability"

1 个答案:

答案 0 :(得分:0)

尝试关注xpath

  1. 所有者的xpath。

    "//td[@sortfield='owner']"
    
  2. 专业责任的xpath

     "//select[@name='AVAILABLE_COVERAGES']/option[contains(.,'Professional Liability')]"