반응형
안녕하세요.
오늘은 Selenium 버전 에러 해결 방법에 대해 알아보려고 합니다.
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
options = Options()
driver = webdriver.Chrome(service=Service(executable_path=ChromeDriverManager().install()), options=options)
driver.get("https://www.naver.com")
driver = webdriver.Chrome(service=Service(executable_path=ChromeDriverManager().install()), options=options)
요런 문법으로 셀레니움을 사용하고 계셨다면 아래와 같은 에러가 발생할 수 있습니다.
1. 오류 메시지
ValueError: There is no such driver by url https://chromedriver.storage.googleapis.com/118.0.5993/chromedriver_win32.zip
2. 해결 방법
기존 webdriver-manager가 3버전이라서 나는 오류로써 4버전으로 업데이트를 해주면 에러가 해결됩니다.
# 해결 방법
pip install --upgrade webdriver-manager
감사합니다.
반응형
'Programming > Python' 카테고리의 다른 글
[Python] flask 저장 후 자동 갱신(재시작) - debug mode (0) | 2024.04.29 |
---|---|
[Python] flask host 및 port 변경 (0) | 2024.04.28 |
파이썬 플라스크 (Python flask) 설치 및 사용법 (49) | 2023.09.17 |
파이썬 가상환경(Python venv) 구축 및 설치 (20) | 2023.08.12 |
[Python] Chat GPT API를 통해 cmd 및 local에서 사용해보는 방법 (4) | 2023.02.27 |
댓글