Python Selenium `move_by_offset` doesn't work
问题 Calling simple scrolling action with Python Selenium doesn't work : driver = webdriver.Chrome() driver.get('https://www.wikipedia.org/') time.sleep(2) actions = ActionChains(driver) actions.move_by_offset(500, 500).perform() For example function with moving to element, works Ok and Do scroll: driver = webdriver.Chrome() driver.get('https://www.wikipedia.org/') time.sleep(2) element = driver.find_element_by_css_selector(<Something>) actions = ActionChains(driver) actions.move_to_element