Answers for "scroll to an 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
0

selenium scroll to element c#

var element = driver.FindElement(By.id("element-id"));
Actions actions = new Actions(driver);
actions.MoveToElement(element);
actions.Perform();
Posted by: Guest on October-22-2020

Code answers related to "scroll to an element in selenium"

Python Answers by Framework

Browse Popular Code Answers by Language