hellen_jia 发表于 2017-3-24 13:53:08

如何通过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 "Profile 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/questions/25311593/chromewebdriver-unknown-error-chrome-failed-to-start-crashed
3. 你还有可能会遇到,有时候URL可以正常被launch,有时候不行。这个我找了很久的原因。
解决办法:关掉所有已经打开的chrome webpage, 重新run, 一切正常。





梦想家 发表于 2017-3-24 15:44:54

+ 1支持分享

清晨一缕阳光 发表于 2017-3-25 19:17:29

+2

xiaocai10 发表于 2017-3-27 11:04:02

支持分享,楼主继续加油。
页: [1]
查看完整版本: 如何通过Webdriver(Selenium2)启动Chrome with default profile