Does any know, if there is a way to tell webtest to just show the failed test results? For example through a property?
antBuilder.property(name: "wt.showOnlyFailedTest", value: "true") antBuilder.property(name: "wt.showOnlyFailedTest.limit", value: "200") (stop testing when you get 200 failed tests) Issue found: When you have 3000 test cases, and you try to sort the results by status (for example) the browser get's down. Advantages: You focus on the failed test cases You have smaller reports You save time analysing the reports Disadvantages Sometimes, you may want to check that those test cases that are retrieving a succeed, they are not retrieving a "fake succeed" (You can commenti those lines in the config and run a complete execution) would this be a nice to have? is there any solution around? Thanks in advance for your help! Hernan

