I'm new to selenium, i'm trying to do basic programming for login page, when i enter a wrong password i get pop up box saying invalid password or username with ok button, but selenium RC is not recognizing that pop up window, how do i code that selenium would recognize that. This is the code ive used,
public void nlogin()
{
selenium.Open("/login.aspx");
selenium.Type("Login1_UserName", "abcd");
selenium.Type("Login1_Password", "welcome");
try
{
selenium.Click("Login1_LoginButton");
Assert.AreEqual("ok", selenium.GetAlert());
selenium.WaitForPopUp("ok", "3000");
selenium.Click("ok");
}
catch (Exception)
{
}
}
Please help me with regards to this.