pip install selenium
pip install beautifulsoup4
크롬 버전 확인 (주소창에 붙여넣기)
chrome://version
크롬 드라이버 다운로드 링크
chromedriver.chromium.org/downloads
다운받은 드라이버 실행파일 소스내에 driver 폴더에 저장
import time
from selenium import webdriver
# Webdriver 실행
dr = webdriver.Chrome('./driver/chromedriver.exe')
# Webdriver에서 네이버 페이지 접속
dr.get('https://www.naver.com/')
dr.implicitly_wait(3)
'Development > Python' 카테고리의 다른 글
[Python] pip3 install paho-mqtt==1.6.1 (0) | 2022.08.25 |
---|---|
[python] request body 출력 (0) | 2022.04.04 |
[python] requirements.txt로 패키지 관리 (0) | 2022.03.10 |
[Python]csv 엑셀 변환 (0) | 2020.11.19 |
[Python]잡동사니 (0) | 2020.09.25 |