Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am testing using Selenium RC but most of the waitforNottext etc are not present in it. Any idea why?

Am I missing something

share|improve this question

1 Answer

up vote 1 down vote accepted

If you use java and Selenium RC then can change condition to negation i.e. -

while(count>0)
 if(!selenium.isTextPresent("text")) {
  Thread.Sleep(1000)[
 }
 count--;
}
share|improve this answer
yeah in this way you can add but I think these already methods are only available in Selenium IDE and not in Selenium rc – sam Mar 8 '11 at 9:28
Code snippet mentioned above is for RC and not IDE. – Tarun Mar 8 '11 at 19:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.