首页  编辑  

XPATH中定位最后相同数据一个元素的方法

Tags: /计算机文档/网页制作/   Date Created:
通过XPath使用last()

XPath定位特定Web元素 - 使用last()方法。

last()方法从存在的所有输入元素中选择最后一个元素(提到类型)。

//更多请阅读:https://www.yiibai.com/selenium/webdriver-locating-strategies-by-xpath-using-last.html

使用XPath last()方法,可以将Java代码与动态XPath位置一起编写为:

findElement(By.xpath("(//input[@type='text'])[last()]"))
//更多请阅读:https://www.yiibai.com/selenium/webdriver-locating-strategies-by-xpath-using-last.html