Thread thread = new Thread(new ThreadStart(MainStart));
Options = new ChromeOptions();
driverService = ChromeDriverService.CreateDefaultService();
chromeDriverService.HideCommandPromptWindow = true;
Options.AddArguments("--user-data-dir=C:/Users/Tiuz/AppData/Local/Google/Chrome/User Data");
Options.AddArguments("--profile-directory=Profile 1");
driver = new ChromeDriver(driverService, Options);
thread.Start();
当前,我的问题是,如果我在关闭Chrome的情况下进行调试,则可以正常工作,但是如果我使用的是Chrome窗口,则会收到以下错误消息。我该怎么办?
{OpenQA.Selenium.WebDriverException:'无效的参数:用户数据目录已在使用中,请为--user-data-dir参数指定一个唯一值,或者不使用--user-data-dir' }