码迷,mamicode.com
首页 > 其他好文 > 详细

Selenium 设定firefox的启动路径(安装多个firefox适用)

时间:2016-08-05 15:24:07      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

Firefox版本过高,不兼容,启动会报错,所以可安装多个版本的Firefox

public class baidu {

public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.firefox.bin", "C:\\Program Files\\Mozilla Firefox\\firefox.exe");
WebDriver driver=new FirefoxDriver();
driver.get("https://www.baidu.com/");
String url=driver.getCurrentUrl();
System.out.println(url);
driver.close();
}

}

Selenium 设定firefox的启动路径(安装多个firefox适用)

标签:

原文地址:http://www.cnblogs.com/caimaomao/p/5741378.html

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