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
버전에 맞는 크롬드라이버를 클릭하셔서 각자 컴퓨터 os에 맞게 다운로드 해주세요!
728x90
'데이터 분석 > [Python] Troubleshooting' 카테고리의 다른 글
ERROR: Could not install packages due to an OSError (0) | 2021.11.16 |
---|---|
TypeError: first argument must be an iterable of pandas objects, you passed an object of type "DataFrame" (0) | 2021.09.23 |
OverflowError: Python int too large to convert to C long (0) | 2021.09.09 |
[Python] ValueError: Plan shapes are not aligned (0) | 2021.08.19 |
[Python] np.where 조건 여러개 TypeError (0) | 2021.08.17 |