79184353

Date: 2024-11-13 10:08:07
Score: 0.5
Natty:
Report link

Found solution by adding path of chrome to the chrome options. (using options.binary_location)

import undetected_chromedriver as uc
options = webdriver.ChromeOptions()
options.binary_location = "/usr/bin/google-chrome"
driver = uc.Chrome(options=options)

For above to work, chrome and chromedriver have to have matching versions.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: The Oracle