반응형
문제점 : Python과 Selenium을 활용해서 크롤링 하는 도중에 한 사이트가 오직 IE에서만 작동
해결책 : 헤더값에 User-Agent 값을 IE의 값으로 바꿔주면 된다
방법 :
from selenium import webdriver
import Config
options = webdriver.ChromeOptions()
options.add_argument("user-agent=Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko")
driver = webdriver.Chrome(executable_path=Config.CONFIG['CHROMEPATH'],options=options)
driver.get('')
https://sjwiq200.tistory.com/11
반응형
'● 크롤링, 자동화 > Selenium' 카테고리의 다른 글
[jupyter notebook] pyinstaller로 exe파일 만들기 (ipynb -> py 변환) (0) | 2021.08.11 |
---|---|
Selenium Dropdown, Commbo box 선택하는 방법 (0) | 2021.06.02 |
NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":".p"} (Session info: chrome=90.0.4430.212) (0) | 2021.05.19 |
[beautifulsoup, selenium] 인스타그램 이미지 크롤링해보자! (1) | 2021.05.04 |
[잔재미] 셀레니움 이미지 크롤링 (1) | 2021.02.08 |