[python] SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78 크롬드라이버 버전 오류

데이터 분석/[Python] Troubleshooting

[python] SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78 크롬드라이버 버전 오류

INCHELIN 2021. 9. 13. 11:15
728x90
from selenium import webdriver

driver = webdriver.Chrome("C:/Users/Desktop/chromedriver_93.exe") # 크롬드라이버 파일 경로
driver.get('http://www.google.com/') # 셀레니움으로 접속하고자 하는 url

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78

 

크롬드라이버의 버전을 업데이트 해줘야 합니다! 

 

1. 현재 크롬의 버전 확인하기

 

2. 버전에 맞는 크롬드라이버 다운로드

https://chromedriver.chromium.org/downloads

 

ChromeDriver - WebDriver for Chrome - Downloads

Current Releases If you are using Chrome version 94, please download ChromeDriver 94.0.4606.41 If you are using Chrome version 93, please download ChromeDriver 93.0.4577.63 If you are using Chrome version 92, please download ChromeDriver 92.0.4515.107 For

chromedriver.chromium.org

버전에 맞는 크롬드라이버를 클릭하셔서 각자 컴퓨터 os에 맞게 다운로드 해주세요!

728x90