Capybara——如何检查包含换行符的内容

发布于 2024-11-01 10:01:40 字数 439 浏览 1 评论 0原文

假设我的 HTML 输出...

<p>foo<p>...

...检查“foo”是否是该行中的最后一个文本非常重要。

使用水豚检查线路返回的最快方法是什么?

Then I should see "foo\n"

不适合我。

错误是:

expected #has_content?("Cached Slug: foo\\n") to return true, got false (RSpec::Expectations::ExpectationNotMetError)

以下内容有效,但当然不会检查行返回:

Then I should see "foo"

Say that my HTML outputs...

<p>foo<p>...

...and it's important to check that 'foo' is the last text in the line.

What's the quickest way to check for the line return using Capybara?

Then I should see "foo\n"

is not working for me.

The error is:

expected #has_content?("Cached Slug: foo\\n") to return true, got false (RSpec::Expectations::ExpectationNotMetError)

The following works, but of course doesn't check for the line return:

Then I should see "foo"

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

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

发布评论

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

评论(1

瞎闹 2024-11-08 10:01:40

你尝试过吗

Then I should see "foo
"

Have you tried

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