Answers for "scroll to a particular element in selenium"

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 "scroll to a particular element in selenium"

Python Answers by Framework

Browse Popular Code Answers by Language