- Jan 08, 2023
- admin
- 0
MovetoElement and Click
[Test]
public void MovetoElementAndClick()
{
dr.Navigate().GoToUrl(“https://www.browserstack.com/”);
Actions action = new Actions(dr);
IWebElement element = dr.FindElement(By.XPath(“//a[@id=’signupModalButton’]”));
action.MoveToElement(element).Click().Build().Perform();
string expectedURL = “https://www.browserstack.com/users/sign_up”;
string actualURL = dr.Url;
Assert.AreEqual(expectedURL, actualURL,”User is not navigated to signup page”);
}