WebDriverException: Message: unkown error: cannot connect to chrome at 127.0.0.1:6071
from session not created: This version of ChromeDriver only supports Chrome version 117
Current browser version is 116.0.5845.188
크롬이 117로 업데이트가 되면서 발빠른 undetected_chromedriver에서 고새 대응을 해줬는지
크롬116 버젼으로는 사용이 불가능하다는 에러 메세지가 뜨는데요
현재 버젼은 116
지원 버젼은 117
일단 아래와 같이 변경하면 uc는 아니지만 크롬116으로도 기존 스크립트 실행이 가능해보입니다
변경 전
import undetected_chromedriver as uc
driver = uc.Chrome(service=service, options=option)
변경 후
driver = webdriver.Chrome(service=service, options=option)
하지만 undetected_chromedriver가 아닌 기존 selenium driver를 사용하게 됩니다
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
xml 한글 데이타 decode 방법 (0) | 2024.01.20 |
---|---|
[푸시 알림] VAPID Keys 생성하기 (1) | 2023.11.28 |
[파이썬] Selenium - ValueError: There is no such driver by url (0) | 2023.09.01 |
[파이썬] Selenium - 크롬 버젼 116 기본 세팅 (4) | 2023.08.23 |
[파이썬] Selenium - undetected_chromedriver (크롬 116 버전) (10) | 2023.08.22 |