1

我正在尝试使用新的 Watir 6.0 下载 CSV 文件。我找到了 Firefox 的配置文件设置:

profile = Selenium::WebDriver::Firefox::Profile.new
profile['browser.download.folderList'] = 2
profile['browser.download.dir'] = path_to_download
profile['browser.helperApps.neverAsk.saveToDisk'] = "text/csv"
browser = Watir::Browser.new :firefox, :profile => profile

但 Firefox 50.0 不支持加载配置文件设置。我收到此错误消息:

/var/lib/gems/2.3.0/gems/selenium-webdriver-3.0.0/lib/selenium/webdriver/remote/w3c_bridge.rb:80:in `initialize': unknown option: {:profile=>#<Selenium::WebDriver::Firefox::Profile

我还尝试了 Chrome 的配置文件设置:

profile = Selenium::WebDriver::Chrome::Profile.new
profile['download.prompt_for_download'] = false
profile['download.default_directory'] = path_to_download
browser = Watir::Browser.new :chrome, :profile => Profile

但文件不会被保存,文件保存对话框也不会关闭。

所以两者都不适用于新的 Watir。有谁知道用 Watir 下载文件的方法?

4

1 回答 1

1

对于 Firefox,我们将在 Selenium 的下一个版本中支持它。

对于 Chrome,您需要遵循文档中的代码:

prefs = {
  download: {
    prompt_for_download: false, 
    default_directory: "/path/to/dir"
  }
}

browser = Watir::Browser.new :chrome, prefs: prefs
于 2016-12-16T22:53:16.130 回答