watir-webdriver - verify_contains 似乎不受支持
我正在将在 Firefox 3.6 上运行良好的现有测试脚本转换为在 Firefox 4.0 上运行。我注意到大量的语法更改,但目前困扰我的是使用 verify_contains('text')。
时,在 Firefox 3.6 上运行良好的同一测试在 Firefox 4.0 上会引发以下错误
当我使用 watir-webdriver test_060contactmgmt(Test_contact_mgmt) : NoMethodError: # 未定义方法“verify_contains”。
如果这有帮助,我运行了 gem 更新,并且使用的是 Netbeans IDE 6.9.1。
I am in the process of converting my existing test scripts that function fine on Firefox 3.6 to work on firefox 4.0. I've noticed a significant number of syntax changes but the one that is plaguing me at the moment is using verify_contains('text').
The same test that functions fine on firefox 3.6 throws the following error on firefox 4.0 when I use the watir-webdriver
test_060contactmgmt(Test_contact_mgmt):
NoMethodError: undefined method `verify_contains' for #.
If this helps any, I ran a gem update and I am using Netbeans IDE 6.9.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来该方法已在 watir-webdriver 中被弃用;有关更多信息,请查看此页面 与 Watir 1 的比较.X 在 GitHub 上该项目。
您始终可以在自己的代码中扩展该类以包含您自己的方法版本,我这样做是为了覆盖从 Watir 转换后测试脚本中缺少的一些方法。
It looks like that method has been deprecated in watir-webdriver; for more information have a look at this page Comparison with Watir 1.X at GitHub for the project.
You could always extend the class in your own code to include your own version of the method, I have done this to cover some of the missing methods in my test script after converting them from Watir.