I am using Selenium RC using Java with eclipse and TestNG framework. I have the following code snippet:
assertTrue(selenium.isTextPresent(\"Please enter Emai
I am adding again one of the easiest ways to continue on assertion failure. This was asked here.
try{ Assert.assertEquals(true, false); }catch(AssertionError e) { System.out.println("Assertion error. "); } System.out.println("Test Completed.");