selenium으로 자동화 프로그램을 만들 때, 현재 설치된 Chrome 등의 브라우저 버전에 맞는 드라이버를 다운로드 받고 그 드라이버를 로딩할 수 있도록 path를 변경해야 합니다. 만약 Chrome을 업데이트하게 되면, 업데이트된 버전에 맞는 Chrome driver를 다시 받아야 합니다. 이런 작업은 매우 귀찮고 번거롭습니다.
다행이 파이썬에는 chromedriver_autoinstaller
라는 라이브러리가 있으며, 프로그램이 실행될 때, 현재 PC에 설치된 Chrome 버전에 맞는 chrome driver를 다운로드할 수 있습니다. 그리고 그 driver를 사용하여 selenium 프로그램을 실행할 수 있습니다.
chromedriver_autoinstaller
설치 및 사용 방법에 대해서 간단히 알아보겠습니다.
1. chromedriver_autoinstaller 설치
AutoInstaller는 다음과 같이 pip로 설치할 수 있습니다.
$ pip install chromedriver-autoinstaller
2. 사용 방법
다음 코드는 현재 설치된 Chrome 버전에 맞는 driver를 다운로드 받고, 그 driver로 Google 사이트를 여는 예제입니다.
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")
Output:
> python .\example.py
install the chrome driver(ver: 94)
C:\Users\js\Desktop\test\example.py:16: DeprecationWarning: executable_path has been deprecated, please pass in a Service object
driver = webdriver.Chrome(driver_path)
3. Deep dive
어려울 것 없는 코드지만, 기능별로 자세히 보면...
아래 코드는 PC에 설치된 크롬 버전을 가져옵니다.
chrome_ver = chromedriver_autoinstaller.get_chrome_version().split('.')[0]
Driver를 다운로드 받으면 현재 working directory의 상대 경로로, ./<chrome version>/chromedriver.exe
에 파일이 저장됩니다.
아래와 같이 다운로드 받은 파일이 존재하는지 확인 후, 없는 경우만 다운로드 받도록 합니다.
driver_path = f'./{chrome_ver}/chromedriver.exe'
if os.path.exists(driver_path):
print(f"chrom driver is insatlled: {driver_path}")
아래 코드가 실행되면 ./<chrome version>/chromedriver.exe
경로에 파일이 생성됩니다.
chromedriver_autoinstaller.install(True)
그 이후에는 다음과 같이 driver를 로딩하여 사용할 수 있습니다.
driver = webdriver.Chrome(driver_path)
driver.get("https://google.com")
Related Posts
- Python - Yaml 파일 파싱하는 방법
- Python - 파일 내용 삭제
- Python - for문에서 리스트 순회 중 요소 값 제거
- Python - 두 리스트에서 공통 요소 값 찾기
- Python - 문자열 앞(뒤)에 0으로 채우기
- Python - 공백으로 문자열 분리
- Python - 중첩 리스트 평탄화(1차원 리스트 변환)
- Python - 16진수 문자열을 Int로 변환
- Python - 두 날짜, 시간 비교
- Python f-string으로 변수 이름, 값 쉽게 출력 (변수명 = )
- Python - nonlocal과 global 사용 방법
- Python 바다코끼리 연산자 := 알아보기
- Python - pip와 requirements.txt로 패키지 관리
- Python - 딕셔너리 보기 좋게 출력 (pprint)
- Python - Requests 사용 방법 (GET/POST/PUT/PATCH/DELETE)
- Python - 온라인 컴파일러 사이트 추천
- Python - os.walk()를 사용하여 디렉토리, 파일 탐색
- Python - 문자열 비교 방법
- Python - Text 파일 읽고 쓰는 방법 (read, write, append)
- Python - 리스트에서 첫번째, 마지막 요소 가져오는 방법
- Python - 두개의 리스트 하나로 합치기
- Python - 리스트의 마지막 요소 제거
- Python - 리스트의 첫번째 요소 제거
- Python 소수점 버림, 4가지 방법
- Python 코드 안에서 버전 확인 방법
- Python 소수점 반올림, round() 예제
- Python - 리스트 평균 구하기, 3가지 방법
- Python - bytes를 String으로 변환하는 방법
- Python - String을 bytes로 변환하는 방법
- Python 버전 확인 방법 (터미널, cmd 명령어)
- Python - 람다(Lambda) 함수 사용 방법
- Python - dict 정렬 (Key, Value로 sorting)
- Python - range() 사용 방법 및 예제
- Python - 리스트를 문자열로 변환
- Python - 문자를 숫자로 변환 (String to Integer, Float)