如何在 Java 中使用 Selenium 通过 firefox 下载 XLSX 文件?

How to download XLSX file through firefox using Selenium in Java?

我正在尝试使用以下代码下载 xlsx 文件:

FirefoxProfile profile = new FirefoxProfile();

profile.setPreference("browser.download.dir", "directory where to save data");
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.helperApps.alwaysAsk.force", false);
profile.setPreference("browser.download.manager.showWhenStarting", false);
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-excel, application/x-msexcel, application/excel, application/vnd.ms-excel");

ob = new FirefoxDriver(profile);

但是显示下载对话框后测试停止,没有下载任何文件。

但是如果我通过更改上面代码中提到的 mime 类型来尝试对 csv 文件使用相同的代码,那么它工作正常。

请帮帮我。谢谢。

您正在下载的文件的 MIME 类型似乎不同(可能类似于 application/force-download), 正如您提到的 xlsx 的正确 MIME 类型 - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.

安装"HTTPFox" Firefox 插件来记录流量并检查其中捕获的实际MIME 类型。使用该 MIME 类型更新后,您的代码应该可以工作。

我添加了以下代码而不是上面的代码:

firefoxProfile.setPreference("browser.download.dir",dest_path);
firefoxProfile.setPreference("browser.download.manager.showWhenStarting",false);
firefoxProfile.setPreference("browser.helperApps.neverAsk.saveToDisk","application/xls;text/csv");

现在一切正常。 xlsx 的 MIME 类型无法正常工作,所以我尝试为 xls 文件添加 MIME 类型,现在它工作正常。正在自动下载 XLSX 文件。

只需使用此代码:

profile.set_preference("browser.helperApps.neverAsk.saveToDisk", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")