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
You can consider to locate the element in the HTML DOM first, then we can scroll the element into the Viewport as follows:
HTML DOM
scroll
element = driver.find_element_by_xpath("element_xpath") self.driver.execute_script("return arguments[0].scrollIntoView(true);", element)