Bạn có thể dùng
driver.execute_script("window.scrollTo(0, Y)")
Trong đó Y là chiều cao (trên màn hình fullhd là 1080). (Cảm ơn @lukeis)
Bạn cũng có thể dùng
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
để cuộn xuống cuối trang.
Nếu bạn muốn cuộn đến một trang có tải vô hạn , như mạng xã hội, facebook, v.v. (cảm ơn @Cuong Tran)
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
một phương pháp khác (nhờ Juanse) là, chọn một đối tượng và
label.sendKeys(Keys.PAGE_DOWN);