selenium加载Chrome配置文件Java

huangapple go评论78阅读模式
英文:

selenium load chrome profile java

问题

我尝试使用Selenium加载Chrome配置文件。然而,每当我上传配置文件时,都会出现错误:

无效参数:用户数据目录已在使用中,请为--user-data-dir参数指定唯一值,或者不要使用-user-data-dir。
String chromeProfile = "C:\\Users\\ad\\AppData\\Local\\Google\\Chrome\\User Data";
ChromeDriverService chSvc = new ChromeDriverService.Builder()
   .usingDriverExecutable(new File("C:\\Driver\\chromedriver.exe")).usingAnyFreePort().build();
ChromeOptions chOption = new ChromeOptions();
chOption.addArguments("--user-data-dir=" + chromeProfile);
chOption.addArguments("--profile-directory=Profile 33");
chOption.addArguments("--start-maximized");        
ChromeDriver driver = new ChromeDriver(chSvc, chOption);
driver.get("https://google.com");

selenium加载Chrome配置文件Java

英文:

I tried loading the chrome profile with selenium. However, whenever I upload the profile, I get an error:

invalid argument: user data directory is already in use, please specify a unique value for --user-data-dir argument, or don't use - user-data-dir.
String chromeProfile = "C:\\Users\\ad\\AppData\\Local\\Google\\Chrome\\User Data";
ChromeDriverService chSvc = new ChromeDriverService.Builder()
   .usingDriverExecutable(new File("C:\\Driver\\chromedriver.exe")).usingAnyFreePort().build();
ChromeOptions chOption = new ChromeOptions();
chOption.addArguments("--user-data-dir=" + chromeProfile);
chOption.addArguments("--profile-directory=Profile 33");
chOption.addArguments("--start-maximized");        
ChromeDriver driver = new ChromeDriver(chSvc, chOption);
driver.get("https://google.com");

selenium加载Chrome配置文件Java

答案1

得分: 1

你不能在相同的 user-data-dir 下运行多个 ChromeDriver 实例。你可以做的是每次创建一个 ChromeDriver 实例时,都创建一个临时目录,然后在 ChromeOptions 中进行设置:chOption.addArguments("--user-data-dir=" + tempDir);

英文:

You cannot run multiple instance of ChromeDriver with the same user-data-dir. What you can do is every time you create a ChromeDriver instance, create a temp directory then set it in ChromeOptions chOption.addArguments("--user-data-dir=" + tempDir);

huangapple
  • 本文由 发表于 2020年5月2日 15:33:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/61555903.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定