watir-webdriver - verify_contains 似乎不受支持

发布于 2024-11-16 11:19:52 字数 327 浏览 1 评论 0原文

我正在将在 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 技术交流群。

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

发布评论

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

评论(1

超可爱的懒熊 2024-11-23 11:19:52

看起来该方法已在 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.

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