Kamu bisa memakai
driver.execute_script("window.scrollTo(0, Y)")
di mana Y adalah tinggi (pada monitor fullhd itu 1080). (Terima kasih kepada @ Lukas)
Anda juga bisa menggunakan
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
untuk menggulir ke bagian bawah halaman.
Jika Anda ingin menggulir ke halaman dengan pemuatan tanpa batas , seperti yang ada di jejaring sosial, facebook, dll. (Terima kasih kepada @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
Metode lain (terima kasih kepada Juanse) adalah, pilih objek dan
label.sendKeys(Keys.PAGE_DOWN);