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

点击进入转发地址:

一般我们使用如下代码启动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,也是可以在代码中使用的.

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。