I’m using karate feature file to run gatling. There are some request having error status (400
403
500
504
,…) but are not mark as KO
in gatling report
I expect that gatling report should mark fail requests in feature file as Fail (KO
). Btw, the gatling.log is just a part of running not all requests. How can I make the log full of requests?
1
Do you have a step for asserting the status code you expect if it is not 400, for example:
* status 200
Then Karate will mark the response as failed.
2