capybara:使用选择器查找(元素)来定位复杂的属性名称

发布于 2024-12-08 21:26:42 字数 483 浏览 0 评论 0原文

使用黄瓜和水豚测试 Rails 应用程序。假设我无法更改标记,我可以使用水豚在充满类似 tdselect 的页面中选择以下 select 吗?

<td>
  <select name="attributes[ruby][category]">
    <option value="2" selected="selected">Languages</option>
    <option value="3">Communication</option>
  </select>
</td>

这似乎失败了(我认为是因为嵌套的“[”和“]”)。

find("select[name=attributes[ruby][category]]")

逃避也是不行的。想法?

Using cucumber and capybara to test a rails app. Assuming I cannot change the markup, can I use capybara to select the following select in a page full of similar tds and selects?

<td>
  <select name="attributes[ruby][category]">
    <option value="2" selected="selected">Languages</option>
    <option value="3">Communication</option>
  </select>
</td>

This seems to fail (I assume because of the nested "[" and "]").

find("select[name=attributes[ruby][category]]")

Escaping doesn't work either. Thoughts?

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

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

发布评论

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

评论(3

临风闻羌笛 2024-12-15 21:26:42

您可以尝试 find('select', :name => 'attributes[ruby][category]')find_field('attributes[ruby][category]')

You can try find('select', :name => 'attributes[ruby][category]') or find_field('attributes[ruby][category]').

风透绣罗衣 2024-12-15 21:26:42

我认为您需要引用属性值:

find("select[name='attributes[ruby][category]']")

但 maro 建议使用 find_field 是一种更简洁的方法。

I think you need to quote the attribute value:

find("select[name='attributes[ruby][category]']")

but maro's suggestion of using find_field is a cleaner approach.

清醇 2024-12-15 21:26:42

更一般地,您可以使用 XPath。

find(:xpath, "//select[@name='attributes[ruby][category]'")

这种方法的优点是它可以用于任何属性。

More generally you can use XPath

find(:xpath, "//select[@name='attributes[ruby][category]'")

This approach has the advantage that it can be used for any attribute.

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