WaitforElement 超时错误?
我正在将编码转换为 Junit4(webdriver) 。当我在 Eclipse 中运行代码时,我在下面的代码中收到错误,
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try {
if (isElementPresent(By.cssSelector("button.MB_focusable"))) break;
}
catch (Exception e) {}
Thread.sleep(1000);
}
有人能告诉我如何摆脱这个错误吗?
I am converting my coding to Junit4(webdriver) . When I run my code in Eclipse I get an error in the below code,
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try {
if (isElementPresent(By.cssSelector("button.MB_focusable"))) break;
}
catch (Exception e) {}
Thread.sleep(1000);
}
Can anyone tell me how to get rid of this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建
DefaultSelenium
对象后尝试调用isElementPresent
方法。在 Eclipse 和 Selenium Rc 中运行测试用例时,我们需要调用该对象的对象。
如果遇到任何其他问题,请尝试告诉我。
Try to call the
isElementPresent
method after creation of theDefaultSelenium
object.While running the testcases in Eclipse and Selenium Rc we need the object on which object should be invoked.
Try and let me know if run into any further issues.