What is Mock HTTP Response?
Mock HTTP Response is a simulated server reply used to test scraping pipelines without hitting the live target. Instead of making an actual network request, the fetch layer intercepts the call and returns a pre-recorded or synthetically generated payload. This isolates the extraction logic from network volatility, prevents accidental rate-limit triggers during CI/CD runs, and allows engineers to deterministically test edge cases like malformed JSON, 503 errors, or unexpected schema drift.