Hi ChromeDriver Users,
I'm using ChromeDriver in Remote Debugging mode (Windows / IntelliJ / Java / Selenium).
Everything worked fine until win64/133.0.6943.98/chromedriver.exe released.
Then I noticed that, a new version(latest stable) 133.0.6943.126 released very shortly.
But unfortunately, it does not work either. (Chrome Browser is up to date 133.0.6943.127). The new ChromeDriver(chromeOptions) call halts, i.e. cannot create the ChromeDriver. (Please see below:)
Do you have idea, what the problem can be?
Please find the way I'm trying it:
I invoke Browser in Remote Debug mode like this:
"%ChromeExecPath%" --disable-popup-blocking --lang=de --accept-lang=de --window-size=1920,1080 --remote-debugging-port=9222 --user-data-dir="%ChromeProfilePath%"
Here it goes the Remote Debug specific Java / Selenium code to initialize a session:
System.setProperty("webdriver.http.factory", "jdk-http-client");
chromeOptions.setExperimentalOption("debuggerAddress", "127.0.0.1:9222");
chromeOptions.addArguments("--remote-allow-origins=*");
SeleniumManager seleniumManager = SeleniumManager.getInstance();
SeleniumManagerOutput.Result webDriverPath = seleniumManager.getDriverPath(chromeOptions, false);
String driverPath = webDriverPath.getDriverPath();
System.setProperty("webdriver.chrome.driver", driverPath);
WebDriver webDriver = new ChromeDriver(chromeOptions);
setWebDriver(webDriver);
Thank you for your help in advance.
Best regards,
Attila