I'm using selenium RC with Java. to verify the text present i'm using below statement
com.unitedinternet.portal.selenium.utils.logging.LoggingAssert.assertEquals("Text not found",s.isElementPresent(CommanWebElements.lblOwner),true,(LoggingSelenium) s);
the problem is if the particular text is not present, execution will not be continued.how to use verify instead of assert in order to continue the execution if particular text is not present