0

我試圖設置所有可能的首選項,以避免打開並保存文件對話框,同時使用硒下載文件。首選項設置爲避免在Firefox下載對話框不工作PDF

它正在爲文本文件,但不適用於PDF文件

下面是喜好設置:

String downloadPath = <some random path>; 
    String mimetypes = "application/vnd.pdf,application/vnd.adobe.xfdf,text/csv,application/x-msexcel,application/excel,application/pdf,application/x-excel,application/vnd.ms-excel,image/png,image/jpeg,text/html,text/plain,application/msword,application/xml"; 
    String url = "http://only-testing-blog.blogspot.in/2014/05/login.html"; 
    FirefoxProfile profile = new FirefoxProfile(); 
    profile.setPreference("browser.download.panel.shown", false); 
    profile.setPreference("browser.download.folderList", 2); 
    profile.setPreference("browser.download.manager.showWhenStarting", false); 
    profile.setPreference("browser.download.dir", downloadPath); 
    profile.setPreference("browser.helperApps.neverAsk.openFile", mimetypes); 
    profile.setPreference("browser.helperApps.neverAsk.saveToDisk", mimetypes); 
    profile.setPreference("browser.helperApps.alwaysAsk.force", false); 
    profile.setPreference("browser.download.manager.alertOnEXEOpen", false); 
    profile.setPreference("browser.download.manager.focusWhenStarting", false); 
    profile.setPreference("browser.download.manager.useWindow", false); 
    profile.setPreference("browser.download.manager.showAlertOnComplete", false); 
    profile.setPreference("browser.download.manager.closeWhenDone", false); 

    FirefoxDriver driver = new FirefoxDriver(profile); 
    driver.get(url); 
    driver.findElement(By.xpath("//a[contains(.,'Download PDF File')]")).click(); 

正在使用火狐與2.53.0硒版本

請幫助我使它適用於PDF,Excel和Word文件

謝謝!

+0

PDF文件正在發生什麼? –

+0

打開或保存文件對話框正在顯示PDF,Excel和工作文件 –

+0

您可以縮小您的問題到PDF,Excel和Word中的任何一種文件類型嗎? – DebanjanB

回答

0

我發現的一個解決方案是使用ProfileIni類。它允許你加載一個預製的firefox配置文件。您可以使用如下圖所示

private ProfilesIni init = new ProfilesIni(); 
private FirefoxProfile profile = init.getProfile("QA"); 
private WebDriver driver = new WebDriver(profile); 

然後,您可以將所有這些偏好的直上的個人資料,並設置設置跳過下載對話框,並自動保存到你想要的目標文件夾,並保持對每一個設置測試用例,你需要下載東西

相關問題