Chrome 无法启动:正常退出。在域中的计算机上在 chrome 中运行 selenium Web 驱动程序测试时抛出错误

问题描述 投票:0回答:1

org.openqa.selenium.SessionNotCreatedException:无法启动新会话。响应代码 500。消息:会话未创建:Chrome 无法启动:正常退出。 (chrome 无法访问)

  1. 针对 Chrome 浏览器执行 selenium Web 驱动程序测试
  2. 在私人帐户上运行时,计算机位于 AD 域,不存在问题
  3. 没有标题,我需要实际的浏览器。无头工作正常
  4. selenium webdriver 版本 4.18.1 chrome 版本 122.0.6261.95 操作系统 Windows 11

镀铬选项:

        ChromeOptions chromeOptions = new ChromeOptions();
        chromeOptions.addArguments("--disable-extensions");
        chromeOptions.addArguments("--enable-application-cache");
        chromeOptions.addArguments("--allow-running-insecure-content");
        chromeOptions.addArguments("--no-sandbox");
        chromeOptions.addArguments("--enable-automation");
        chromeOptions.addArguments("--ignore-certificate-errors");
        chromeOptions.addArguments("--remote-allow-origins=*");
        chromeOptions.addArguments("--disable-dev-shm-usage");
        chromeOptions.addArguments("--disable-gpu");
        chromeOptions.addArguments("--remote-debugging-port=9222");
        chromeOptions.addArguments("--disable-infobars");

Chrome 版本 113 注意到了这个问题,此后我能够找到解决方案。

selenium-webdriver selenium-chromedriver
1个回答
0
投票

我删除了以下注册表并解决了问题:HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\

© www.soinside.com 2019 - 2024. All rights reserved.