Ruby 断言和禁用输入
有谁知道如何断言复选框或输入被禁用?我找不到任何表明支持此功能的内容 我正在使用 webrat 和 test/unit 编写黄瓜测试。
我想要一个能够断言禁用的步骤:some_checkbox ||断言_禁用:某些_输入。
或者我可以通过某种方式检查复选框的属性。
Does anyone know how to assert that a checkbox or input is disabled? I can't find anything to indicated that this is supported
I'm writing cucumber tests with webrat and test/unit.
I'd like to have a step that is able to assert_disabled :some_checkbox || assert_disabled :some_input.
Or some way that I can check a property of the checkbox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
应该为你做。
should do it for you.
这可能对您使用 Webrat 和 Test/Unit 没有帮助,但对于使用 Capybara 的人,您可以使用
This probably wont help you with Webrat and Test/Unit, but for people using Capybara, you can use
你可以尝试一下:
You could give this a go:
我得到了皮特的答案,但不得不切换到 field_with_id 。
I got Pete's answer to work but had to switch to field_with_id.