Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

selenium scroll to element c#

var element = driver.FindElement(By.id("element-id"));
Actions actions = new Actions(driver);
actions.MoveToElement(element);
actions.Perform();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #selenium #scroll #element
ADD COMMENT
Topic
Name
8+4 =