HOTO 정밀 드라이버 세트
# Life2023. 3. 31. 00:22HOTO 정밀 드라이버 세트

Y비트는 0.6이라 닌텐도 스위치는 불가. 1.0이상은 된다고함. 이전에 수리했던 드라이버는 1.5m.

[파이썬]셀레니움 크롬 드라이버 자동 설치 for windows
# Script/Python2022. 10. 10. 15:22[파이썬]셀레니움 크롬 드라이버 자동 설치 for windows

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})") chromedriv..

image