标题: 如何通过Webdriver(Selenium2)启动Chrome with default profile [打印本页] 作者: hellen_jia 时间: 2017-3-24 13:53 标题: 如何通过Webdriver(Selenium2)启动Chrome with default profile 之前通过【转载】http://www.51testing.com/html/66/n-3715766.html学习到了如何通过Webdriver(Selenium2)启动各种浏览器的方法。但是其中关于启动chrome浏览器的第三点设置profile的方法还有待补充。最近项目正好有这方面的需求,就做了一些研究,还是花了比较多的时间,因为期间遇到很多问题,在此给大家把我遇到的问题,以及如果解决的都share给大家,希望对大家有帮助。
Purpose:
不想重新输入网站的用户名密码,用这种方法可以绕过输入。
ChromeOptions options = new ChromeOptions();
//by using chrome://version/ to find the "rofile Path"
options.addArguments("user-data-dir=replace with your profile path");
WebDriver driver = new ChromeDriver(options);
String baseUrl = "https://www.baidu.com/";
driver.get(baseUrl);