skip to Main Content

Docker – Cannot connect to chrome at 127.0.0.1:53233, This version of ChromeDriver only supports Chrome version 114. Current browser version is 127.0.6533.72

driver code: from selenium.webdriver.common.by import By from selenium.webdriver.chrome.service import Service from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as ec import undetected_chromedriver2 as uc from undetected_chromedriver2.options import ChromeOptions import time from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.service import Service import pickle…

VIEW QUESTION

Why can't I connect to Chrome when using the undetected chromedriver? – Ubuntu

I am running a python script inside a docker container running https://hub.docker.com/r/dorowu/ubuntu-desktop-lxde-vnc/. The python script can be found below: import logging logging.basicConfig(level=logging.NOTSET) import undetected_chromedriver.v2 as uc import time driver = uc.Chrome() driver.get('https://www.google.com/') time.sleep(777) The output of the logs can be…

VIEW QUESTION
Back To Top
Search