Selenium SeleniumTestCase .checkForVerificationErrors方法:失败前输出状态

发布于 2024-09-10 08:55:44 字数 564 浏览 5 评论 0原文

我正在测试网页上的表格,我需要验证表格中的所有值。 为此,我编写了一个 for 循环 像这样的事情

for (row) {
   for (column) {
       SeleniumTestCase.verifyTrue( "expected".equals("obtained"));
   }
   SeleniumTestCase.checkForVerificationErrors();
}

在第五行中我正在检查他们在这一行的任何列中是否有任何错误。

问题是,如果它们有任何错误,我无法将检测到的行和列错误输出为 checkForVerificationErrors 方法将立即失败,不允许我输出任何调试信息。

I am testing a table on a webpage where i need to verify all values in table.
For this i have written a for loop
something like this

for (row) {
   for (column) {
       SeleniumTestCase.verifyTrue( "expected".equals("obtained"));
   }
   SeleniumTestCase.checkForVerificationErrors();
}

Here in the fifth line i am checking was their any error in any of the columns at this row.

Problem is if their is any error, i can not output at which row and columns error was detected as checkForVerificationErrors method will fail immediately without letting me to output any debugging information.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

断舍离 2024-09-17 08:55:44

您可以改用 JUnit TestCase 断言:

for (row) {
   for (column) {
       SeleniumTestCase.assertEquals("Verifying row " + row + ", column " + column, 
               expected, obtained);
   }
}

You can use the JUnit TestCase assertions instead:

for (row) {
   for (column) {
       SeleniumTestCase.assertEquals("Verifying row " + row + ", column " + column, 
               expected, obtained);
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文