I\'m having issues with scrolling to the top of the web page when using Python and Selenium.
When the page loads for some reason you are taken to the bottom of the
from selenium import webdriver from selenium.webdriver.common.by import By driver = webdriver.Chrome() driver.get("__") #to scroll try use the following command driver.execute_script("scrollBy(0,250);")
It will work !!