Capybara 使用什么库作为 CSS 选择器?

发布于 2024-10-01 00:25:58 字数 413 浏览 2 评论 0原文

对于我的验收测试,我使用 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 技术交流群。

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

发布评论

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

评论(1

Capybara 在底层使用 Nokogiri

Capybara uses Nokogiri under the hood.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文