如何让 watir-webdriver 通过 Firebug 启动 Firefox 4?

发布于 2024-11-08 02:06:36 字数 250 浏览 1 评论 0原文

有什么想法吗?我尝试按照下面的链接所述设置 webdriver.firefox.useExisting=true 希望重用启用了 firebug 的现有窗口,但没有这样的运气。

http://code.google.com/p/selenium/wiki/FirefoxDriver

Any ideas? I've tried setting webdriver.firefox.useExisting=true as described in the link below hoping to reuse an existing window with firebug enabled, but no such luck.

http://code.google.com/p/selenium/wiki/FirefoxDriver

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

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

发布评论

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

评论(3

油焖大侠 2024-11-15 02:06:36

您必须创建一个始终启用 Firebug 的特定配置文件,然后在您的配置中使用此配置文件启动 Firefox

you have to create a specific profile where Firebug is always enabled, then launch firefox with this profile in your configuration

樱&纷飞 2024-11-15 02:06:36

简单的答案是:

browser = Watir::Browser.new(:firefox, :profile => "default")

但是如果您正在运行测试,您可能不应该使用默认配置文件。

The quick answer is:

browser = Watir::Browser.new(:firefox, :profile => "default")

But if you are running tests you probably shouldn't use the default profile.

混吃等死 2024-11-15 02:06:36
profile = Selenium::WebDriver::Firefox::Profile.new
profile.add_extension "/path/to/firebug.xpi"
browser = Watir::Browser.new :firefox, :profile => profile
profile = Selenium::WebDriver::Firefox::Profile.new
profile.add_extension "/path/to/firebug.xpi"
browser = Watir::Browser.new :firefox, :profile => profile
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文