This version of ChromeDriver only supports Chrome version 113 Current browser version is 115.0.5790.110 #1429
Replies: 6 comments 10 replies
-
Same today, maybe we should downgrade the chrome version before the new version of undetected release |
Beta Was this translation helpful? Give feedback.
-
There's an PR open for this issue. Let's wait for the merge. #1427 |
Beta Was this translation helpful? Give feedback.
-
I manage to make it work by using portable chrome. Follow the steps below |
Beta Was this translation helpful? Give feedback.
-
There's no need to downgrade. Judging from the code, from undetected_chromedriver.patcher import Patcher
from pathlib import Path
uc_driver_path = Patcher().executable_path
print(uc_driver_path)
if uc_driver_path.endswith('undetected_chromedriver.exe'): # to be safe
Path(uc_driver_path).unlink() Basically, |
Beta Was this translation helpful? Give feedback.
-
Do we know if this will be fixed automatically with the next update / push or will we have to modify our code? |
Beta Was this translation helpful? Give feedback.
-
this workis : pip install git+https://www.github.com/ultrafunkamsterdam/undetected-chromedriver@master |
Beta Was this translation helpful? Give feedback.
-
How to fix this error?
Exception has occurred: SessionNotCreatedException Message: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 115.0.5790.110 with binary path C:\Program Files (x86)\Google\Chrome\Application\chrome.exe Stacktrace:
Beta Was this translation helpful? Give feedback.
All reactions