我使用以下代码下载到特定路径:
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找到该文件。 检查文件名是否有大写或其他输入错误。 检查文件是否已移动,重命名或删除。 请帮忙解决这个问题。