加载Chrome个人资料不起作用(ChromeDriver)

时间:2014-10-19 13:09:29

标签: java selenium-chromedriver

我正在尝试加载我的Chrome个人资料,以便与Selenium WebDriver一起使用,但它不起作用,并且始终默认为新的。我尝试了here提供的代码。

有任何解决方法或修复方法吗?我希望ChromeDriver使用自定义扩展程序,选项等等,command line flagsChromeOptions限制了功能。

另外,我还有一个关于loading preconfigured extensions的问题。

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。但我做了类似的事情并且有效。

String userProfile= "C:/Users/"your user"/AppData/Local/Google/Chrome/User";
ChromeOptions options = new ChromeOptions();
options.addArguments("user-data-dir=" + userProfile);
driver = new ChromeDriver(options);

如果它也适合你,请告诉我。