原型:选择两个孩子中的第一个

发布于 2024-11-16 20:47:12 字数 629 浏览 5 评论 0 原文

我正在 Ruby on Rails 中实现功能测试。我需要在网页上创建一个 assert_select,其中有一个 content div,它是两个

    列表。我需要检查第一个列表中
  • 项目的数量。我无法将任何类或 id 添加到任何
      列表中。 所以我的选择器看起来像这样:

assert_select 'content ul<something_here_to_specify_the_first_one> li', <number_of_li_elements

但是,我找不到“选择第一个 ul 元素”的方法。我查看了 http://content.labnotes.org/assert_select/assert_select.html< /a> 但无法弄清楚哪一个适合我。

干杯!

I'm implementing a functional test in Ruby on Rails. I need to make an assert_select on a web page, which has a content div, which was two <ul>lists. I need to check the number of <li> items in the first list. And I can't add any class or id to any of the <ul> list.
So my selector would look like this:

assert_select 'content ul<something_here_to_specify_the_first_one> li', <number_of_li_elements

However, I can't find the way to do that 'select the first one of the ul elements'. I've taken a look at http://content.labnotes.org/assert_select/assert_select.html but haven't been able to figure out which one is the right for me.

Cheers!

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

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

发布评论

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

评论(1

一曲爱恨情仇 2024-11-23 20:47:12

为了选择第一个 ul 元素,请执行以下操作:

content ul:first-child ...

In order to select the first ul element, do:

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