Capybara 使用什么库作为 CSS 选择器?
对于我的验收测试,我使用 Steak 和 Capybara (+ Envjs)。 当尝试查找这样的元素时 find("#ticker").find("li:eq(0)")
它告诉我 Unable to find 'li:eq(0) '
,但 find("#ticker").find("li:eq(1)")
返回列表中正确的第一个 li
元素。 我习惯了 eq 选择器以 0 开头(jQuery)。为什么水豚中的 eq 选择器以 1 开头?错误还是功能?
更新
它似乎是一些非官方的选择器,其工作方式类似于nth-child
。 Capybara (/Envjs) 在选择器的底层使用什么?它似乎不是 jQuery,因为它以上面提到的 eq(0) 开头。
For my acceptance tests I use Steak and Capybara (+ Envjs).
When trying to find an element like this find("#ticker").find("li:eq(0)")
it tells me Unable to find 'li:eq(0)'
, but find("#ticker").find("li:eq(1)")
return the correct first li
element in the list.
I am used to that eq selector starts with 0 (jQuery). Why does eq selector in Capybara starts with 1? Bug or feature?
Update
It seems that it is some unofficial selector which works like nth-child
. What does Capybara (/Envjs) use under the hood for selectors? It doesn't seem to be jQuery as it would start with eq(0) as mentioned above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Capybara 在底层使用 Nokogiri 。
Capybara uses Nokogiri under the hood.