Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网页包含几个带有 xpath 定位器的元素,例如:
//li[2]/div/div[2]/div //li[3]/div/div[2]/div //li[4]/div/div[2]/div ... ...
我需要知道显示了多少这些元素。我如何使用Javaand来计算它们Selenium?
Java
Selenium
谢谢
罗兰
尝试 driver.find_elements_by_xpath 并计算返回元素的数量。
int xpathCount = webDriver.findElements(By.xpath("Valid_Xpath")).size();
欲了解更多信息,请单击此处或此处。
Valid_Xpath 应该是 HTML 中第一个表单元素的 xpath。