Access to file download dialog in Firefox

前端 未结 11 2647
一个人的身影
一个人的身影 2020-11-22 07:02

Is there any kind of API that can allow me to manipulate a file download dialog in Firefox? (I want to access the one that appears when user does something, not initiate one

11条回答
  •  爱一瞬间的悲伤
    2020-11-22 07:42

    I have a solution for this issue, check the code:

    FirefoxProfile firefoxProfile = new FirefoxProfile();
    
    firefoxProfile.setPreference("browser.download.folderList",2);
    firefoxProfile.setPreference("browser.download.manager.showWhenStarting",false);
    firefoxProfile.setPreference("browser.download.dir","c:\\downloads");
    firefoxProfile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/csv");
    
    WebDriver driver = new FirefoxDriver(firefoxProfile);//new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capability);
    
    driver.navigate().to("http://www.myfile.com/hey.csv");
    

提交回复
热议问题