将 xpath 与 Firewatir 一起使用
我刚刚开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来组合 :xpath 和多个属性可能存在错误,因为当我使用 :xpath =>: 时,XPath 查询对我不起作用:
但如果我使用单属性样式(逗号代替),它就可以工作of =>) 查找元素,并使用“存在?”末尾有一个问号。
不知道为什么,但“存在”和“存在”?已定义,并且它们具有不同的行为:
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 =>:
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: