Watir-webdriver 的 options.yml 文件问题
我已经使用 firewatir 有一段时间了,但考虑切换到 watir-webdriver。我正在使用现有的脚本,当我使用 watir-webdriver 时,IRB 中出现错误
这是我现有脚本中的代码
require 'rubygems'
require 'watir-webdriver'
Watir.options_file = 'classes/options.yml'
我收到以下错误
“undefined method `options_file=' for Watir:Module (NoMethodError)”
有人可以吗为我指明正确的方向,因为我已经迷失了几天。
谢谢
I have been using firewatir for quite some time but thinking of switching to watir-webdriver. I was playing with my existing script and getting an error in the IRB when i use watir-webdriver
Here is my code from existing script
require 'rubygems'
require 'watir-webdriver'
Watir.options_file = 'classes/options.yml'
I am getting a following error
"undefined method `options_file=' for Watir:Module (NoMethodError)"
Can someone point me to the right direction since I am lost on this for couple of days.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Watir != Watir-Webdriver。 Watir-Webdriver 不支持使用 options_file 的 options.yml,或者很可能不支持您在其中设置的选项(browser.speed 等)。
您可以在此处找到可用方法的列表以及两者的比较列表:http: //jarib.github.com/watir-webdriver/doc/ 。
如果您发布在该文件中设置的选项,我们可以帮助您确定它们是否在 Watir-Webdriver 中可用,或者您如何使用它们。
谢谢
Watir != Watir-Webdriver. Watir-Webdriver does not support options.yml using options_file, or most likely the options you're setting in it (browser.speed, etc).
You can find a list of available methods, as well as a comparison list of the two here: http://jarib.github.com/watir-webdriver/doc/ .
If you post the options you are setting in that file we can help you determine if they're available in Watir-Webdriver, or how else you use them.
Thanks
您可以在 http://watirwebdriver.com/ 阅读有关 watir-webdriver 的更多信息
You can read more about watir-webdriver at http://watirwebdriver.com/