본문 바로가기
코딩 프로그래밍/PYTHON 파이썬

Python 크롤링 스샷 스크린샷 캡쳐

by 프즈 2020. 10. 24.
반응형

selenium 이 필요합니다

pip install selenium

노션 캡쳐를 예쁘게 하고 싶어서 이렇게 시작했어요~

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By

DRIVER = './chromedriver'
chrome_options = Options()
chrome_options.add_argument("--headless")

driver = webdriver.Chrome(DRIVER,options=chrome_options)

driver.get('https://캡쳐하고 싶은 주소')

screenshot = driver.save_screenshot('my_screenshot.png')
driver.quit()

 

Notion 에서 PDF 내보내기가 좀 좋아질때까지는 이 방법을 활용해야 겠어요

반응형

댓글