when the user makes several requests to the same resource, replay those request in the same order as it was recorded.
for example:
GET api/count returns {"count": 1}
GET api/count returns {"count": 2}
GET api/count returns {"count": 3}
when recording and when replaying, we want to achieve the same behaviour.
Goal
when the user makes several requests to the same resource, replay those request in the same order as it was recorded. for example: GET
api/count
returns{"count": 1}
GETapi/count
returns{"count": 2}
GETapi/count
returns{"count": 3}
when recording and when replaying, we want to achieve the same behaviour.
usage: