如何使用firefox中的selenium webdriver下载到特定文件夹

时间:2017-04-19 07:06:48

标签: java selenium

我使用以下代码下载到特定路径:

FirefoxProfile profile = new FirefoxProfile();          
profile.setPreference("browser.download.folderList",2);
profile.setPreference("browser.download.manager.showWhenStarting", false);          
profile.setPreference("browser.download.dir", PATH To Download); 

profile.setPreference("browser.helperApps.neverAsk.saveToDisk","application"); driver = new FirefoxDriver(profile);

但是在点击应用程序中的下载按钮后会抛出错误: 文件未找到 Firefox无法在https:/// site / conversion / zipDowload?docIds = 95760找到该文件。     检查文件名是否有大写或其他输入错误。     检查文件是否已移动,重命名或删除。 请帮忙解决这个问题。

0 个答案:

没有答案