기능 파이썬 셀레니움을 활용하여 웹사이트의 풀 스크린샷(스크롤 끝까지)을 캡쳐하는 방법입니다. 코드 import time from selenium import webdriver from selenium.webdriver.chrome.options import Options def full_screenshot(driver, url, output_path): driver.get(url) time.sleep(1) # Give the page some time to load total_height = driver.execute_script("return document.body.parentNode.scrollHeight") driver.execute_script("window.scrollTo(0, documen..