Hi, i have Collection with many requests (GET/POST), which must be done correctly in order and remember their results to can run next one. So i write pre-request and post-response scripts to check/set correct variables. And when server encouter a bottleneck / concurent access etc exception and return something unexpected i want throw error in pre/post scripts that will be seen on graph (or else) and fail overall test of collection.
Simple
Login → post check sessionid
GetUserDetails → post check to have first/surname and save them to variables
GetListFees → prepare filter by saved variables; post check to have some data in list and save list to variables
GoPay (Simulate creating payment) → pre check fees, post check to have payment id
GoPay (Simulate PAID payment, mark fees be paid ) → pre check variable paymentId, postCheck payment status
GetListFees (shoul see less) → at above, check count (test fail if wrong number).
If I run collection to test functionality its ok, and if it will be some glitch, test will told me.
But when run performance test, some time some one fails not knowing a reason. Errors thats thrown by server are not corectly displayed in graph, i always see detail on first one.
Logs are not displayed eather. And test not fail.
So what is the best way to run performance test, and stil see logs, assertions exception, etc.
Thanks