Reputation: 21
In a Postman GET
request, I have used multiple assertions. However, if any assertion fails, Postman will stops its execution then and there and will throw an error.
Is there any way to prevent this and continue with other assertions even if any one among them fails?
Upvotes: 2
Views: 1699
Reputation: 129
Postman has an open Feature Request on this https://github.com/postmanlabs/postman-app-support/issues/4341
However, you can use command line app newman using the --bail option available with it.
Upvotes: 2