Recording

In the context of Stoobly, recording means to intercept HTTP requests with the agent and save them to the local filesystem.

Why record HTTP requests?

Recording HTTP requests saves previously seen requests and their responses. This enables you to:

  1. Mock future requests that match and return realistic data

  2. Replay requests at any time

  3. Gain deeper insight into a scenario's requests

What gets recorded?

The following HTTP request components get recorded:

  • Hostname

  • Port number

  • Path

  • Headers

  • Query Parameters

  • Body

  • Response Headers

  • Response Body

When are HTTP requests recorded?

Last updated