이번에 크롬이 116버젼으로 업데이트되면서 또 selenium chrome driver에 문제가 발생...
selenium.common.exceptions.WebDriverException:
Message: unknown error: cannot connect to chrome at 127.0.0.1:65490
from session not created: This version of ChromeDriver only supports
Chrome version 114 Current browser version is 116.0.5845.97
이런 비슷한 에러가 뜨면서 실행이 안되는데요
임시 해결법이 나와 있어서 공유합니다
일단 시스템에 git이 설치되어있어야합니다
기존 undetected_chromedriver 삭제 후
pip uninstall undetected_chromedriver
아래 커맨드를 실행
pip install -e git+https://github.com/jdholtz/undetected-chromedriver.git@f91b7d86bc257d4cb9bfc848266e82509868e2c6#egg=undetected_chromedriver
이렇게 하면 chromedriver를 제대로 찝어주게 됩니다
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
[파이썬] Selenium - ValueError: There is no such driver by url (0) | 2023.09.01 |
---|---|
[파이썬] Selenium - 크롬 버젼 116 기본 세팅 (4) | 2023.08.23 |
[파이썬] set 관련 method 알아보기 (0) | 2023.08.12 |
[파이썬] list 관련 method 알아보기 (0) | 2023.08.12 |
[파이썬] "is"로 시작하는 11가지 문자열 메소드 (0) | 2023.08.11 |