Firefox 4 with watir webdriver: Need help using helperApps.neverAsk to save CSV without prompting

后端 未结 2 1888
你的背包
你的背包 2021-01-06 00:08

I learned how to use Firefox 4 with watir and webdriver (on Win7 x64), setting profile items. Example:

profile = Selenium::WebDriver::Firefox::Profile.new
pr         


        
2条回答
  •  甜味超标
    2021-01-06 00:16

    In Firefox 6+, I couldn't get this to work without specifically setting the 'browser.download.folderList' value:

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

    See: http://watirwebdriver.com/browser-downloads/

提交回复
热议问题