i try to scrolldown on a website using selenium with the following code: (i would like to scroll down on the left side of the website where you can see the entries)
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
import time
link = "https://www.bing.com/maps/search?style=r&q=auto+IN+Vienna&srs=sb&cp=48.209085%7E16.392537&lvl=12.2"
options = Options()
options.add_argument("start-maximized")
srv=Service()
driver = webdriver.Chrome (service=srv, options=options)
driver.get (link)
time.sleep(3)
driver.execute_script("window.scrollBy(0, 10000)")
input("Press!")
But it simply stay on the very top after running the code:
How can i scroll down using selenium to get more results on this site?