gpt4 book ai didi

selenium - 如何使用xpath获取n个元素?

转载 作者:行者123 更新时间:2023-12-03 00:52:37 25 4
gpt4 key购买 nike

我试图使用 xpath 仅获取 5 个 anchor 元素。使用类似

driver.findElements(By.xpath("//a"));

给我所有的 anchor 元素。有没有办法只获取特定数量的元素?

最佳答案

尝试下面的 XPath 来获取前 5 个 anchor :

"(//a)[position()<6]"

如果您想要特定范围内的元素,例如 anchor 从 6 到 10:

"(//a)[position()>5 and position()<=10]"

关于selenium - 如何使用xpath获取n个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43344772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com