티스토리 뷰

728x90

Python selenium

크롬 업데이트로 인해 드라이브 맞지 않아 에러가 발생

 

selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 114 Current browser version is 117.0.5938.63 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

 

해결방안

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager

 

driver = webdriver.Chrome(ChromeDriverManager().install())

 

만약, PyCharm 사용 시 아래와 같이 해결

File > Settings > Project: pythonProject > Python Interpreter

webdriver-manager 설치

728x90
댓글