Selenium、Firefox:如何下载 filesaver.js 创建的 CSV 文件

Selenium, Firefox: How to download CSV file created by filesaver.js

我正在尝试在 Firefox 上使用 Selenium 下载 CSV 文件。
我在这里看到几个类似的帖子,所以我的设置已经如下:

String downloadsPath = getFromRepository("common","//downloadsPath");
System.setProperty("webdriver.gecko.driver", "./src/main/resources/geckodriver.exe");
FirefoxProfile profile = new FirefoxProfile();
FirefoxOptions options = new FirefoxOptions();
profile.setPreference("browser.download.dir",downloadsPath);
profile.setPreference("browser.download.folderList",2);
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/csv,application/excel,application/vnd.ms-excel,application/vnd.msexcel,text/anytext,text/comma-separated-values,text/csv,text/plain,text/x-csv,application/x-csv,text/x-comma-separated-values,text/tab-separated-values");
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/xml,text/plain,text/xml,image/jpeg,application/octet-stream");
profile.setPreference("browser.download.manager.showWhenStarting",false);   
profile.setPreference("browser.helperApps.neverAsk.openFile","application/csv,application/excel,application/vnd.ms-excel,application/vnd.msexcel,text/anytext,text/comma-separated-values,text/csv,text/plain,text/x-csv,application/x-csv,text/x-comma-separated-values,text/tab-separated-values");  
profile.setPreference("browser.helperApps.neverAsk.openFile","application/xml,text/plain,text/xml,image/jpeg,application/octet-stream");
profile.setPreference("browser.helperApps.alwaysAsk.force", false);
options.setProfile(profile);
driver = new FirefoxDriver(options);

但这一切都不起作用,我仍然看到 pop-up dialog
我想这里的问题是因为这个 CSV 文件实际上并不是从某个服务器下载的,而是 file-saver JS
在客户端生成的 下载此 CSV 文件时,我还在开发工具中看到没有流量。
我将不胜感激任何帮助。

经过一些研究,我发现对于这种情况 data:text/csv mimeType 应该添加到配置文件首选项中。
现在一切顺利!