웹 크롤링, 스크래핑
크롬 드라이버 자동 다운로드 및 DeprecationWarning: executable_path has been deprecated, please pass in a Service object
수알치
2022. 7. 9. 19:05
크롬 드라이버 자동 다운로드 및 DeprecationWarning: executable_path has been deprecated, please pass in a Service object
https://velog.io/@sangyeon217/deprecation-warning-executablepath-has-been-deprecated
DeprecationWarning: executable_path has been deprecated 해결하기
DeprecationWarning: executable_path has been deprecated 해결 방법에 대한 포스팅 입니다.
velog.io
$ pip install webdriver-manager
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
def set_chrome_driver():
chrome_options = webdriver.ChromeOptions()
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options)
return driver
자동으로 현재 크롬에 맞는 드라이버가 자동으로 다운로드 받아지고 그것은 캐시에 저장됩니다. 다음 호출 시 캐시에 저장된 드라이버가 있으면 더이상 다운로드 하지 않고 재사용합니다.
반응형