告诉 Watir 在 Mac 上使用特定的 FireFox 应用程序

Tell Watir to use a specific FireFox app on Mac

我正在使用 Ruby Watir。当它打开浏览器时,它会打开 FireFox。但是,我认为它与我使用的 FireFox 不同,因为它没有我通常拥有的任何插件。

是否可以告诉 Watir 使用 my FireFox 应用程序? (我正在使用 Mac OSX Yosemite)。

很可能使用相同的 Firefox 浏览器,只是它正在创建一个新的 Firefox 配置文件(不同的配置文件在 Firefox 中不共享扩展)

来自the documentation

By default, the Firefox driver creates a new Firefox profile for each test run, which is the recommended action.

You can specify an existing profile to use, such as your ‘default’ profile:

b = Watir::Browser.new :firefox, :profile => 'default'