728x90
WebDriverException: Message: unknown error: cannot connect to chrome at 127.0.0.1:56922
from session not created: This version of ChromeDriver only supports Chrome version 114
Current browser version is 116.0.5845.97
이런 오류가 발생한다면,
options = uc.ChromeOptions()
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
d = DesiredCapabilities.CHROME
d["goog:loggingPrefs"] = {"browser": "INFO"}
chromedriver_path = r"c:\jupyter_notebook\chromedriver116.exe"
browser = uc.Chrome(driver_executable_path=chromedriver_path, use_subprocess=True, options=options, desired_capabilities=d)
chromedriver 116 버전으로 다운 받아놓고, 위와 같이 처리하면 됨.
출처 : https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/1477
728x90
'Python' 카테고리의 다른 글
구글 서치 콘솔 오래된 콘텐츠 전체 삭제 (0) | 2023.08.25 |
---|---|
네이버 서치어드바이저에서 전체 웹페이지 검색 제외 자동 (0) | 2023.08.25 |
selenium4 설명 잘 되어 있는 블로그 (0) | 2023.08.22 |
티스토리 블로그 전체 게시물 비공개 변경 (1) | 2023.08.14 |
selenium4 webdriver.Chrome() 전체화면 (0) | 2023.08.14 |