I\'m working on a C# Selenium-WebDriver. After send key, I want to wait few seconds. I do the following code to wait for 2 seconds.
public static void press(para
You can use Thread.Sleep(miliseconds) function. This stop your C# thread and selenium continue
[TestMethod]
public void LoginTest()
{
var loginForm = driver.FindElementByXPath("//form[@id='login-form']");
if (loginForm.Enabled)
{
MainPageLogin(loginForm);
CheckLoginForm();
}
else
{
CheckLoginForm();
}
**Thread.Sleep(5000);**
Assert.AreEqual(driver.Url, "https://staging.mytigo.com/en/");
}