[Selenium] ChromeDriver 133.0.6943.126 seems not working

1,959 views
Skip to first unread message

Attila Filetóth

unread,
Feb 21, 2025, 6:17:14 AMFeb 21
to ChromeDriver Users
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%"

(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

Hemnath N

unread,
Feb 22, 2025, 5:45:28 AMFeb 22
to ChromeDriver Users
Facing same issue :(

Kashif Nazar

unread,
Feb 22, 2025, 2:44:20 PMFeb 22
to ChromeDriver Users
Facing same problem.

Any solution, Please share

Kashif Nazar

unread,
Feb 22, 2025, 3:10:30 PMFeb 22
to ChromeDriver Users
Use this code

import os
import shutil

from selenium import webdriver
from selenium.webdriver.chrome.service import Service

chrome_driver_path = shutil.which("chromedriver")
service = Service(chrome_driver_path)

service = Service(chrome_driver_path)
driver = webdriver.Chrome(service=service)


driver.get("https://www.google.com")
print("ChromeDriver is updated and working!")
driver.quit()

asasasassaaa sasa

unread,
Feb 23, 2025, 9:27:49 AMFeb 23
to ChromeDriver Users

Hi, I found out that although the newest version listed on the official chromedriver page is 133.0.6943.126 (here -> https://googlechromelabs.github.io/chrome-for-testing/) if you paste the download link for chromedriver version 133.0.6943.126 but modify the version number to 133.0.6943.127, the updated file will download to your computer (this link worked for my win64 https://storage.googleapis.com/chrome-for-testing-public/133.0.6943.127/win64/chromedriver-win64.zip

Reply all
Reply to author
Forward
0 new messages