I am trying to find a better way to do this than using:
js.ExecuteScript(\"scroll(0, 1300)\");
I have a page where the data can change maki
I started using the below which seems to be working nicely. Thanks for the help all.
IWebElement bio = SeleniumDriver.FindElement(By.XPath("path")); Actions actions = new Actions(SeleniumDriver); actions.MoveToElement(bio); actions.Perform();