英文:
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");
英文:
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");
答案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);
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论