반응형
pip install requests
pip install bs4
pip install selenium
install webdriver
sites.google.com/a/chromium.org/chromedriver/downloads
selenium 을 이용한 샘플 코드
from selenium import webdriver
## Chrome의 경우 | 아까 받은 chromedriver의 위치를 지정해준다.
driver = webdriver.Chrome('C:\_src\sj_python\chromedriver_win32\chromedriver.exe')
## 암묵적으로 웹 자원 로드를 위해 3초까지 기다려 준다.
driver.implicitly_wait(3)
## url에 접근한다.
driver.get('https://nid.naver.com/nidlogin.login')
크롤링 관련 참고 글
- beomi.github.io/gb-crawling/posts/2017-02-27-HowToMakeWebCrawler-With-Selenium.html
반응형
'Development > Python' 카테고리의 다른 글
selenium 가저올 때 원하는 데이터를 찾는 방법 (0) | 2021.03.21 |
---|---|
크롤링을 위한 준비 및 연습 (0) | 2021.03.21 |
딥러닝 준비 python 개발환경 + Pytorch 설치 in Windows 10 (0) | 2020.12.13 |
py 파일을 exe 실행파일로 만들기 (0) | 2020.11.02 |
Python Eclipse 개발환경 설치 (0) | 2020.10.20 |
댓글