Robert Bird - 2004-03-22

Logged In: YES
user_id=973398

Assuming you have set up a WebClient webClient and are on
the correct page:

WebResponse currentPage = webClient.getCurrentState();
if (currentPage.getText().indexOf("My search text") == -1) {
System.out.println("Text not found");
}
else {
System.out.println("Text found");
}