Answers for "python selenium how to scroll in a scroll view element"

4

scroll to element python selenium

from selenium.webdriver.common.action_chains import ActionChains

element = driver.find_element_by_id("my-id")

actions = ActionChains(driver)
actions.move_to_element(element).perform()
Posted by: Guest on March-06-2020

Code answers related to "python selenium how to scroll in a scroll view element"

Python Answers by Framework

Browse Popular Code Answers by Language