Selenium SeleniumTestCase .checkForVerificationErrors方法:失败前输出状态
我正在测试网页上的表格,我需要验证表格中的所有值。 为此,我编写了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以改用 JUnit TestCase 断言:
You can use the JUnit TestCase assertions instead: