I am using Selenium RC using Java with eclipse and TestNG framework. I have the following code snippet:
assertTrue(selenium.isTextPresent(\"Please enter Emai
Change your assertions to verifications:
verifyTrue(selenium.isTextPresent("Please enter Email ID")); verifyTrue(selenium.isTextPresent("Please enter Password"));