Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2174899
  • 博文数量: 104
  • 博客积分: 206
  • 博客等级: 入伍新兵
  • 技术积分: 1829
  • 用 户 组: 普通用户
  • 注册时间: 2012-09-12 10:24
个人简介

效字当先,以质为本。测试开发入行十余年,辉煌过,迷茫过,持续探寻人生的激情和前进的步伐!好好生活,认真工作!

文章分类
文章存档

2024年(1)

2019年(2)

2018年(4)

2017年(7)

2016年(3)

2015年(14)

2014年(33)

2013年(31)

2012年(9)

分类: Java

2015-07-09 00:38:24

题目:在启动firefox时,如何设置firefox的默认下载文件路径,让在需要下载的地方自动的把文件下载到设置的文件夹中去;
代码:

点击(此处)折叠或打开

  1. import org.openqa.selenium.WebDriver;
  2. import org.openqa.selenium.WebDriver.Navigation;
  3. import org.openqa.selenium.chrome.ChromeOptions;
  4. import org.openqa.selenium.firefox.FirefoxDriver;
  5. import org.openqa.selenium.firefox.FirefoxProfile;
  6. import org.openqa.selenium.firefox.internal.ProfilesIni;

  7. public class Mysavefiles {

  8.     public static void main(String[] args) {
  9.         // TODO Auto-generated method stub
  10.         mydefault();

  11.     }
  12.     public static void mydefault(){
  13.         ProfilesIni allprofiles = new ProfilesIni();
  14.         FirefoxProfile profile = allprofiles.getProfile("default");
  15.         profile.setPreference("browser.download.folderList", "2");
  16.         profile.setPreference("browser.download.dir", "E:\\selenium");
  17.         profile.setPreference("browser.download.useDownloadDir", true);
  18.         profile.setPreference("browser.download.manager.showWhenStarting",false);
  19.         profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/octet-stream, application/vnd.ms-excel, text/csv, application/zip,application/exe");
  20.         WebDriver driver = new FirefoxDriver(profile);
  21.         Navigation navigation = driver.navigate();
  22.         navigation.to("%202.14@67_136971.exe");
  23. //        driver.get(");
  24.         driver.close();
  25.     }
  26. }
一定要注意:browser.helperApps.neverAsk.saveToDisk这个属性值的配置,必须加上application/xxxx,不然一直会弹出下载提示框

阅读(4408) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~