哪种MIME类型用于设置firefox首选项以自动下载.ebc文件?

时间:2018-08-30 13:11:04

标签: java html selenium firefox automation

我正在尝试在Selenium Automation中下载一个扩展名为.ebc的文件(EBC文件)。

<a href="sample.ebc">sample.ebc</a>

我已经在下面的“首选项”下进行了尝试,它适用于.Zip文件或文本文件,但对于.ebc文件,它仍然为我提供了保存和openWith的弹出窗口。

profile.setPreference("browser.download.folderList",2);
profile.setPreference("browser.download.manager.showWhenStarting",false);
profile.setPreference("browser.download.dir","C:\\Users\\userName\\Downloads");
profile.setPreference("browser.helperApps.neverAsk.openFile","text/x-ebc*,text/ebc,text/EBC,application/EBC,application/octet-stream,text/html, text/plain");
profile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/x-ebc*,text/ebc,text/EBC,application/EBC,application/octet-stream,text/html, text/plain");

预先感谢。 附注:不想使用Robot Class或AutoIT。

0 个答案:

没有答案