Hi,
I have a testcase with about 20 Verify activities. When I run this in Studio, my testcase fails if 1 of the verify acitivies fails (so works as intended)
However, when I schedule that same testcase in Orchestrator and check the result in Test Manager, it shows Test Passed even with the failed Verifies.
Does anyone know what I’m doing wrong?
My flow opens an application, reads out contract data and then verifies if that data matches Test Data with 20 seperate Verify Expression acitivies. If 1 Verify fails, it should fail the test case.
ContinueOnError=TRUE because I want all my verifies to get checked
Thanks, for the reply
That makes the flow stop on the first verify that fails, while I want them all to get checked.
I saved the result of all my verifies to a boolean Result and added an extra verify “Result=True” at the end with ContinueOnError set to false. Not exactly pretty, but it seems to work.
Still doesn’t make much sense that the result is different in Studio vs Test Manager tho
I’ll work around it by adding an extra verify at the end with all previous verifies combined. That way our testers can still see the separate results while the overall result ends up correct.