반응형
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 내보내기가 좀 좋아질때까지는 이 방법을 활용해야 겠어요
반응형
'코딩 프로그래밍 > PYTHON 파이썬' 카테고리의 다른 글
Django WhiteNoise configuration is incompatible with WhiteNoise v4.0 오류 해결 방법 (0) | 2020.11.28 |
---|---|
파이썬 이용하여 이미지 배경 삭제하기 (1) | 2020.11.10 |
Python Selenium 창 사이즈 설정하기 (0) | 2020.10.23 |
Python 크롤링 selenium 자바스크립트 결과 값 받기 (0) | 2020.10.22 |
Python Flask 를 repl.it 에 올려보기 - repl.it 에서 pip 사용하기 (0) | 2020.10.19 |
댓글