无法使用 selenium webdriver 下载文件
Unable to Download file using selenium webdriver
您好,我想下载一个文件,我写了这段代码,但是在执行文件时没有下载它出现在对话框中。请推荐
FirefoxProfile fprofile=new FirefoxProfile();
fprofile.setPreference("browser.download.dir", "D:\Webdriver_download");
fprofile.setPreference("browser.download.folderlist", 2);
fprofile.setPreference("browser.helperApps.neverAsk.saveToDisk", "text/csv, application/pdf, application/x-msexcel,application/excel,application/x-excel,application/excel,application/x-excel,application/excel, application/vnd.ms- excel,application/x-excel,application/x-msexcel,image/png,image/jpeg,text/html,text/plain,application/msword,application/xml,application/excel,text/x-c");
fprofile.setPreference("browser.download.manager.showWhenStarting", false);
WebDriver driver=new FirefoxDriver(fprofile);
driver.get("http://spreadsheetpage.com/index.php/file/C35/P10/");
driver.manage().window().maximize();
driver.findElement(By.linkText("smilechart.xls")).click();
你在这里做错了两件事:
首先:
browser.download.folderlist has folderList (i.e. L is capital in list), keeping previous string will download it to downloads folder instead of your desired folder.
其次:
browser.helperApps.neverAsk.saveToDisk you have set application/vnd.ms- excel, it is application/vnd.ms-excel without space.
希望对您有所帮助。
您好,我想下载一个文件,我写了这段代码,但是在执行文件时没有下载它出现在对话框中。请推荐
FirefoxProfile fprofile=new FirefoxProfile();
fprofile.setPreference("browser.download.dir", "D:\Webdriver_download");
fprofile.setPreference("browser.download.folderlist", 2);
fprofile.setPreference("browser.helperApps.neverAsk.saveToDisk", "text/csv, application/pdf, application/x-msexcel,application/excel,application/x-excel,application/excel,application/x-excel,application/excel, application/vnd.ms- excel,application/x-excel,application/x-msexcel,image/png,image/jpeg,text/html,text/plain,application/msword,application/xml,application/excel,text/x-c");
fprofile.setPreference("browser.download.manager.showWhenStarting", false);
WebDriver driver=new FirefoxDriver(fprofile);
driver.get("http://spreadsheetpage.com/index.php/file/C35/P10/");
driver.manage().window().maximize();
driver.findElement(By.linkText("smilechart.xls")).click();
你在这里做错了两件事:
首先:
browser.download.folderlist has folderList (i.e. L is capital in list), keeping previous string will download it to downloads folder instead of your desired folder.
其次:
browser.helperApps.neverAsk.saveToDisk you have set application/vnd.ms- excel, it is application/vnd.ms-excel without space.
希望对您有所帮助。