Description
What happened?
I have a working test setup which is running as expected in a venv using python 3.10.0 under Windows 11.
I considered updating to python 3.12.4, so I created a new venv using 3.12.4 and installing the same decencies as I have in my original venv through a requirements.txt.
Problem is when using 3.12.4 the code execution hangs at "driver = webdriver.Chrome ()". I.e. it doesn't pause or stop or break out, it just continues running with no visible progress. There is no output or error messages.
So I created another new test venv, using python 3.10 again, installed same requirements.txt and this new venv works again.
So from my pov I have two identical (apart from their name) new venvs, one using py 3.10.0, the other py 3.12.4, the former running my existing tests, the latter just stopping when initiating the chrome webdriver.
Is there a know issue when upgrading from py 3.10.0?
Selenium ver: 4.26.1
It does download the latest chromedriver, 129.0.6668.100
I am unable to change the Chrome browser version, which is 129.0.6668.90
How can we reproduce the issue?
See above
Relevant log output
No output in terminal
Operating System
Win11
Selenium version
Python 4.26.1
What are the browser(s) and version(s) where you see this issue?
Chrome 129.0.6668.90
What are the browser driver(s) and version(s) where you see this issue?
chromedriver 129.0.6668.100
Are you using Selenium Grid?
no