元素列表
我在页面上有一些链接,例如:
123test.com/456
abc_test.com/sdfsd
abc_test.org
我必须获取 href 属性由 test 单词组成的所有元素。
我知道如何按给定编号单击此类链接:
selenium.click("//body/descendant::a[contains(@href,'test')][2]")
此代码将单击地址中包含“test”的第二个链接。但如何获得链接数呢?
I have some links at the page like:
123test.com/456
abc_test.com/sdfsd
abc_test.org
I have to get all elements which href attribute consists of test word.
I know how to click at such link by given number:
selenium.click("//body/descendant::a[contains(@href,'test')][2]")
This code will click at second link which has 'test' in address. But how to get that count of links?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有功能:
There is function: