[파이썬]셀레니움 크롬 드라이버 자동 설치 for windows# Script/Python2022. 10. 10. 15:22
Table of Contents
728x90
반응형
from selenium import webdriver
import chromedriver_autoinstaller
import os
# Check if chrome driver is installed or not
chrome_ver = chromedriver_autoinstaller.get_chrome_version().split('.')[0]
driver_path = f'./{chrome_ver}/chromedriver.exe'
if os.path.exists(driver_path):
print(f"chrom driver is insatlled: {driver_path}")
else:
print(f"install the chrome driver(ver: {chrome_ver})")
chromedriver_autoinstaller.install(True)
# Get driver and open url
driver = webdriver.Chrome(driver_path)
driver.get("https://google.com")
728x90
반응형
'# Script > Python' 카테고리의 다른 글
[파이썬]페이지 로딩될 때 까지 기다리게 하는 방법 (0) | 2022.10.12 |
---|---|
[파이썬]네이버 데이터랩 추출 및 엑셀 파일 저장(xlsx) (0) | 2022.10.11 |
[파이썬]bluetooth_adapter_winrt.cc:1074 Getting Default Adapter failed error (0) | 2021.05.19 |
[파이썬]셀레니움을 이용한 특정부분만 하이라이트 적용 (0) | 2021.05.07 |
[파이썬]unknown error: DevToolsActivePort file doesn't exist (0) | 2021.04.30 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!