将 xpath 与 Firewatir 一起使用

发布于 2024-10-14 13:04:36 字数 506 浏览 3 评论 0原文

我刚刚开始使用 ruby​​ 和 firewatir,所以我想知道是否只有我这样,或者 firewatir 是否有问题。

我正在尝试使用 xpath 选择一个元素。

这有效:

browser.link(:id => "about").exists #true

这失败了

browser.link(:xpath => "//*[@id='about']").exists #false

但是,这也有效:

browser.element_by_xpath("//*[@id='about']").exists #true

这是在 firewatir 1.7.1 上

$ ruby -v   #ruby 1.9.2p136 (2010-12-25 revision 30365) [i686-linux]

I'm just starting out with ruby and firewatir, so I'm trying to find out if it's just me, or if something is broken with firewatir.

I'm trying to select an element using xpath.

This works:

browser.link(:id => "about").exists #true

This fails

browser.link(:xpath => "//*[@id='about']").exists #false

However, this works as well:

browser.element_by_xpath("//*[@id='about']").exists #true

This is on firewatir 1.7.1

$ ruby -v   #ruby 1.9.2p136 (2010-12-25 revision 30365) [i686-linux]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦慕雪 2024-10-21 13:04:36

看起来组合 :xpath 和多个属性可能存在错误,因为当我使用 :xpath =>: 时,XPath 查询对我不起作用:

irb(main):021:0> ff.link(:xpath => "//*[@id='about']").exists?
=> false

但如果我使用单属性样式(逗号代替),它就可以工作of =>) 查找元素,并使用“存在?”末尾有一个问号。

不知道为什么,但“存在”和“存在”?已定义,并且它们具有不同的行为:

irb(main):018:0> ff.link(:xpath, "//*[@id='about']").exists?
=> true
irb(main):019:0> ff.link(:xpath, "//*[@id='about']").exists
=> ""

Looks like there may be a bug with combining :xpath and multiple attributes, because that XPath query doesn't work for me either when I use :xpath =>:

irb(main):021:0> ff.link(:xpath => "//*[@id='about']").exists?
=> false

But it works if I use the single-attribute style (a comma instead of =>) to find the element, and use "exists?" with a question mark on the end.

Not sure why, but both "exists" and "exists?" are defined, and they have different behavior:

irb(main):018:0> ff.link(:xpath, "//*[@id='about']").exists?
=> true
irb(main):019:0> ff.link(:xpath, "//*[@id='about']").exists
=> ""
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文