Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
[ID: 1223087]
[ID: 1223134]
Milestone(s) impacted by this issue. [ID: 1223085]
[ID: 1223084]
[ID: 1223086]
[ID: 1223031]
Platform
Platform>DevTools
Platform>DevTools>Browser Automation
Platform>DevTools>Browser Automation>ChromeDriver
[ID: 1253656]
Supplemental component tags only. Set main component first. [ID: 1222907]
[ID: 1223136]
Design doc to be reviewed. [ID: 1223032]
This field contains Gerrit urls of code changes that ‘fix’ a security bug (i.e., excluding logging/cleanup commits) and is used when a singular fix cannot be uniquely identified from the existing “Code Changes” field. The change can be in the chromium repo or any other third_party repo. [ID: 1358989]
Link to incidents in IRM as a result of this ticket. [ID: 1300460]
[ID: 1223034]
[ID: 1223088]
View issue level access limits(Press Alt + Right arrow for more information)
Attachment actions
Estimated effort
Unintended behavior
View staffing
Description
Steps to reproduce the problem
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%"
(The following testing link:http://127.0.0.1:9222/json/version works properly.)
Start the Java / Selenium code to initialize s session, here it goes the Remote Debug specific part: 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);
Using win64/133.0.6943.126/chromedriver.exe, the "new ChromeDriver(chromeOptions)" call halts, i.e. cannot create the ChromeDriver.
Problem Description
Hi ChromeDriver Support,
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%"
(The following testing link:http://127.0.0.1:9222/json/version works properly.)
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
Summary
[Selenium] ChromeDriver 133.0.6943.126 seems not working in Remote Debugging mode
Custom Questions
Which component does this fall under?
Not sure - I don't know
Does this work in other browsers?
Not sure - I don't know
Additional Data
Category: API
Chrome Channel: Stable
Regression: Yes