티스토리 뷰
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('headless')
options.add_argument('window-size=1920x1080')
options.add_argument("disable-gpu")
# 혹은 options.add_argument("--disable-gpu")
driver = webdriver.Chrome('chromedriver', chrome_options=options)
driver.get('http://naver.com')
driver.implicitly_wait(3)
driver.get_screenshot_as_file('naver_main_headless.png')
driver.quit()
위와 같이 실행하면 우분투 쉘에서도 셀레니움을 실행 할 수 있습니다.
https://beomi.github.io/gb-crawling/posts/2017-09-28-HowToMakeWebCrawler-Headless-Chrome.html
Headless 크롬으로 크롤링하기 · GitBook
Headless라는 용어는 '창이 없는'과 같다고 이해하시면 됩니다. 여러분이 브라우저(크롬 등)을 이용해 인터넷을 브라우징 할 때 기본적으로 창이 뜨고 HTML파일을 불러오고, CSS파일을 불러와 어떤 내용을 화면에 그러야 할지 계산을 하는 작업을 브라우저가 자동으로 진행해줍니다. 하지만 이와같은 방식을 사용할 경우 사용하는 운영체제에 따라 크롬이 실행이 될 수도, 실행이 되지 않을 수도 있습니다. 예를들어 우분투 서버와 같은 OS에서는 '화면' 자체가
beomi.github.io
'Python' 카테고리의 다른 글
윈도우10에 아나콘다3 설치시 python 사용법 (0) | 2020.09.24 |
---|---|
jupyter notebook에 pip 인스톨하기 (0) | 2020.01.02 |
우분투 서버에 selenium 설치하기 (0) | 2020.01.02 |
크롬북 chromebook 에서 selenium, jupyter notebook 사용하기 (0) | 2019.12.24 |
Python Tips (0) | 2019.12.23 |
댓글