开发者

waitfornottext not present in selenium rc

开发者 https://www.devze.com 2023-02-15 10:31 出处:网络
I am testi开发者_高级运维ng using Selenium RC but most of the waitforNottext etc are not present in it. Any idea why?

I am testi开发者_高级运维ng using Selenium RC but most of the waitforNottext etc are not present in it. Any idea why?

Am I missing something


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--;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消