youtube (1) 썸네일형 리스트형 [Python] Scrolldown 유튜브 in Selenium 보통 selenium 을 통해서 scrolldown Get scroll height last_height = driver.execute_script("return document.body.scrollHeight") while True: # Scroll down to bottom driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") # Wait to load page time.sleep(SCROLL_PAUSE_TIME) # Calculate new scroll height and compare with last scroll height new_height = driver.execute_script("return document.b.. 이전 1 다음