settings에서 interpreter에서 chromedriver-autoinstaller를 검색해 다운받아준다.
사용법은
from selenium import webdriver
import chromedriver_autoinstaller
import time
chromedriver_autoinstaller.install()
driver = webdriver.Chrome()
driver.implicitly_wait(3) # 에러가 덜나게 3초를 기다려준다.
url = "https://www.instagram.com/"
driver.get(url=url)
time.sleep(20) # 바로 꺼지는걸 방지
'Python' 카테고리의 다른 글
git hub에 업로드시 .gitignore 세팅법 (0) | 2024.12.22 |
---|---|
chromedriver 사용시 (0) | 2024.12.03 |
Requests vs Selenium (0) | 2023.08.29 |
colab 설치없이 웹에서 실행가능한 python IDE (0) | 2023.08.28 |
크롤링 용어정리 (0) | 2023.08.19 |