Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

You can use the JUnit TestCase assertions instead:

for (row) {
   for (column) {
       SeleniumTestCase.assertEquals("Verifying row " + row + ", column " + column, 
               expected, obtained);
   }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.