漏洞?如果标签包含的内容多于输入,Webrat 找不到字段

发布于 2024-10-14 18:33:57 字数 531 浏览 7 评论 0原文

webrat 来填写 cucumber 中的文本输入

When I fill in "Last name" with "Doe"

尝试使用给定此 HTML 的

<label>
    <span>Last name</span>
    <input class="title" id="user_last_name" name="user[last_name]" size="30" type="text" />
    <small>Some hint text here</small>
</label>

将会引发输入元素的 Webrat::NotFoundError 错误。

如果我删除 <小>标签,字段找到就好了。

这是一个错误吗?是否存在解决方法?

Trying to fill in a text input in cucumber using webrat with

When I fill in "Last name" with "Doe"

given this HTML

<label>
    <span>Last name</span>
    <input class="title" id="user_last_name" name="user[last_name]" size="30" type="text" />
    <small>Some hint text here</small>
</label>

will throw an Webrat::NotFoundError error for the input element.

If I remove the < small > tag, the field is found just fine.

Is this a bug? Is there a workaround existing?

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

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

发布评论

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

评论(1

下雨或天晴 2024-10-21 18:33:57

这不是那么漂亮的 HTML。应该是这样的:

<p>
  <label for='user_last_name'>Last Name</label>
  <input id='user_last_name' [ other stuff]>
  <small>Some hint text here</small>
</p>

或者用 ActionView 的话来说:

<p>
  <%= f.label :last_name %>
  <%= f.text_field :last_name %>
  <small>Some hint text here</small>
</p>

That's not so pretty HTML. It should be this:

<p>
  <label for='user_last_name'>Last Name</label>
  <input id='user_last_name' [ other stuff]>
  <small>Some hint text here</small>
</p>

Or in ActionView terms:

<p>
  <%= f.label :last_name %>
  <%= f.text_field :last_name %>
  <small>Some hint text here</small>
</p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文