Cucumber 功能出现 UTF-8 错误

发布于 2024-12-06 04:11:09 字数 369 浏览 1 评论 0原文

我正在使用 Rails 3.0.7 和 ruby​​ 1.9.2 以及黄瓜和水豚。我刚刚遇到这个问题,但找不到解决方案:(

US-ASCII 中的无效字节序列 (ArgumentError) :10:在同步' (eval):2:inclick_button' ./features/step_definitions/vouchers_company_steps.rb:25:in `/^我在我的优惠券 UI$/'中使用它

我认为这与表单提交有关,表单提交是 GET 和著名的 utf8 勾选。我的其他表格没有这个问题。这个正在使用元搜索,我不知道它是否有帮助。

I’m using Rails 3.0.7 and ruby 1.9.2 with cucumber and capybara. I just had this problem, and I can’t find a solution :(

invalid byte sequence in US-ASCII (ArgumentError)
:10:in synchronize'
(eval):2:in
click_button'
./features/step_definitions/vouchers_company_steps.rb:25:in `/^I use it in my voucher UI$/'

I think it has something to do with the form submission which is a GET and the famous utf8 tick. I don’t have this problem with my other forms. This one is using metasearch, I don’t know if it can help.

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

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

发布评论

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

评论(2

你与清晨阳光 2024-12-13 04:11:09

添加到文件顶部

# encoding: utf-8

add to the top of the file

# encoding: utf-8
尬尬 2024-12-13 04:11:09

编码:utf-8 没有帮助。

我缩小了问题范围,发现它仅在使用 GET 请求提交表单时出现在 cucumber/capybara 中。错误出现在 utf8=✓ 参数中...

编辑:找到罪魁祸首:我正在使用 escape_utils 并将其删除,使水豚再次工作。

encoding: utf-8 didn’t help.

I narrowed down the problem and found it occurs only within cucumber/capybara when submitting a form with a GET request. The error appears with the utf8=✓ parameter…

EDIT: Found the culprit: I’m using escape_utils and removing it make capybara work again.

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