Wiremock random response with different status code to the same request
I’m using wiremock, I have several responses for the same path and method, get /one. I would like to respond with different status code randomly. I know I can differ the response sequentially using scenarios, but not randomly. I’m talking about doing it directly in json configuration, not using JAVA wiremock API.
For example, I would know how to respond the sequence [200,400,401,200,400,401…etc] but not a random one like [400, 200, 401, 200, 400, 400..etc]