Для загрузки некоторых файлов я использую селен без головы.Но не бывает, когда я запускаю кнопку загрузки.Я использовал код для загрузки всплывающего окна, но не могу
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.download.folderList",2); //Use for the default download directory the last folder specified for a download
profile.setPreference("browser.download.dir", "/Path/to/directory"); //Set the last directory used for saving a file from the "What should (browser) do with this file?" dialog.
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/pdf"); //list of MIME types to save to disk without asking what to use to open the file
firefoxOptions.setProfile(profile);