我正在尝试在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。