51Testing软件测试论坛

标题: 如何通过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);


Note:
1. 你需要import org.openqa.selenium.chrome.ChromeOptions;
2.  你可能会在加入以上code, 然后run java application的时候遇到“org.openqa.selenium.WebDriverException: unknown error: Chrome failed to start: crashed”问题,因为我遇到了
解决办法:【转载】http://stackoverflow.com/questio ... ed-to-start-crashed
3. 你还有可能会遇到,有时候URL可以正常被launch,有时候不行。这个我找了很久的原因。
解决办法:关掉所有已经打开的chrome webpage, 重新run, 一切正常。






作者: 梦想家    时间: 2017-3-24 15:44
+ 1支持分享
作者: 清晨一缕阳光    时间: 2017-3-25 19:17
+2
作者: xiaocai10    时间: 2017-3-27 11:04
支持分享,楼主继续加油。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2