তুমি ব্যবহার করতে পার
driver.execute_script("window.scrollTo(0, Y)")
যেখানে Y উচ্চতা (ফুলহাইড মনিটরে এটি 1080)। (@ লুকাইসকে ধন্যবাদ)
আপনি ব্যবহার করতে পারেন
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
পৃষ্ঠার নীচে স্ক্রোল করতে ।
আপনি যদি অসীম লোড সহ কোনও পৃষ্ঠাতে স্ক্রোল করতে চান তবে সোশ্যাল নেটওয়ার্কগুলি, ফেসবুক ইত্যাদি (@ কুং ট্রানকে ধন্যবাদ)
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
অন্য পদ্ধতি (জুয়ানসকে ধন্যবাদ) হ'ল, একটি বস্তু নির্বাচন করুন এবং
label.sendKeys(Keys.PAGE_DOWN);