WaitforElement 超时错误?

发布于 2024-12-07 15:58:53 字数 346 浏览 0 评论 0原文

我正在将编码转换为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒夜笙歌凉 2024-12-14 15:58:53

创建 DefaultSelenium 对象后尝试调用 isElementPresent 方法。

在 Eclipse 和 Selenium Rc 中运行测试用例时,我们需要调用该对象的对象。

如果遇到任何其他问题,请尝试告诉我。

Try to call the isElementPresent method after creation of the DefaultSelenium 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文