Skip to content
Discussion options

You must be logged in to vote

Hey! I ran into this exact same issue last week, so I feel your pain 😊

Problem

~ This version of ChromeDriver only supports Chrome version 143
~ Current browser version is 142.0.7444.176

basically, undetected_chromedriver grabbed ChromeDriver 143, but your Chrome is still on 142. Theyre having a fight and refusing to work together.

Quick Fixes

1. Let it handle everything automatically (recommended)

import undetected_chromedriver as uc

driver = uc.Chrome(use_subprocess=True)
driver.get("https://www.google.com")
# no manual paths

2. Force it to match your Chrome version

if auto-detection fails:

import undetected_chromedriver as uc

driver = uc.Chrome(version_main=142, use_subprocess=True)

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@19uni94
Comment options

Answer selected by 19uni94
@19uni94
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants