Hi;
if you use clickAndWait (in IDE) that will require waitforpagetoload
for RC since the clickAndWait() command translates into click() for
RC.
Now, your application might dynamically display the text you wait for
via some javascript function, which does not actually post the form
when you click the button.
If this is the case, you need to simply click the button and wait for
the text to be present in the page, you can use the isTextPresent()
method.
Note that you need to implement (unless you convert from IDE to your
programing language of choice) a loop with a timeout to allow Se RC to
wait for the text to actually get into the page.
Example of timeout loop in JAVA:
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try { if (selenium.isTextPresent("Text you need to check is
present in the page")) break; } catch (Exception e) {}
Thread.sleep(1000);
}
Cheers;