반응형
html = driver.find_element(By.TAG_NAME, 'html')
html.send_keys(Keys.END)
이렇게 하면 한번에 끝까지 내려감.
스크롤 한번씩 내리려면 아래와 같이
SCROLL_PAUSE_TIME = 0.5
# 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.body.scrollHeight")
if new_height == last_height:
break
last_height = new_height
728x90
반응형
'Python' 카테고리의 다른 글
[selenium] 부모 노드 중 검색 (0) | 2023.08.06 |
---|---|
[selenium] element click intercepted exception in python (0) | 2023.08.04 |
Mac 에서 다운받은 ChromeDriver 를 권한 문제로 실행할 수 없을 때 (0) | 2023.08.03 |
[Python] 이미지 위에 투명도가 있는 PNG 이미지 합치기 (0) | 2023.06.14 |
streamlit pycharm 에서 debug 사용하기 (conda) (1) | 2023.05.23 |
댓글