TA的每日心情 | 开心 2015-8-5 08:08 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
代码如下
- def __init__(self):
- '''
- 设置Firefox浏览器下载文件的存放路径
- '''
- self.fp=webdriver.FirefoxProfile()
- self.downloadpath=GetParam().getParameter("DownloadPath").strip("\r")
- self.fp.set_preference("browser.download.folderList",2)#2:下载到指定路径,0:下载到桌面,1:下载到默认路径
- self.fp.set_preference("browser.download.manager.showWhenStarting",False)#当一个下载开始时显示下载管理器。true为显示,false为不显示,缺省我true
- self.fp.set_preference("browser.download.dir", self.downloadpath)#上次通过“如何处理这个文件”对话框保存一个文件时所指定的目录
- self.fp.set_preference("browser.helperApps.neverAsk.saveToDisk", "application/JSON file")#指定无需确认即可下载的文件格式
- self.location = GetParam().getParameter("Location").strip("\r")
- self.driver = ''
- if self.location == 'Remote':
- print self.fp.DEFAULT_PREFERENCES
- self.driver = webdriver.Remote(command_executor='http://192.168.90.37:4444/wd/hub',
- desired_capabilities=DesiredCapabilities.FIREFOX,browser_profile=self.fp)
- else:
- self.driver = webdriver.Firefox(firefox_profile=self.fp)
- time.sleep(2)
复制代码
如果使用本地浏览器,下载路径等设置是可以成功的,但是若启动远程浏览器,下载路径等设置不成功,是否我的代码写的有问题呢? |
|