码迷,mamicode.com
首页 > Web开发 > 详细

【转发】Webdriver使用自定义Firefox Profile运行测试

时间:2015-03-11 16:35:49      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

点击进入转发地址:

一般我们使用如下代码启动Firefox:

Java代码 WebDriver driver = new FirefoxDriver()  

 这样Selenium Server启动的Firefox将是一个全新的,不安装任何Add-On的Firefox.

 

如果有需要,我们可以使用我们自己指定的,带有特定配置的Firefox.步骤如下

  1. 运行CMD,打开Firefox的 Profile manager
  2. 点击"Create Profile...",完成步骤,包括输入Profile名字
  3. 点击"Start Firefox"
  4. 在新启动的Firefox中安装自己所需要的Add-On或者做其他配置

技术分享
 

最后,在代码中使用如下方式启动FirefoxDriver:

Java代码 
  1. ProfilesIni allProfiles = new ProfilesIni();  
  2. // "Selenium" is the new profile just created  
  3. FirefoxProfile profile = allProfiles.getProfile("Selenium");  
  4. WebDriver driver = new FirefoxDriver(profile);  

 

我在Selenium profile中安装了Firebug,然后使用脚本启动这个Profile,就能看到安装的Firebug了.

另外我们可以看到Manager里面有个default,这个就是我们自己平时使用的Firefox Profile,也是可以在代码中使用的.

【转发】Webdriver使用自定义Firefox Profile运行测试

标签:

原文地址:http://www.cnblogs.com/sylovezp/p/4329886.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!