HTTP RESPONSES
Response Handling
Overview
Extract and process HTTP response data for comprehensive API testing and validation.
Basic Response Access
* status 200
* match responseStatus == 200
* def responseData = response
* print 'Response time:', responseTime
```gherkin
## Response Components
```gherkin
* def statusCode = responseStatus
* def headers = responseHeaders
* def cookies = responseCookies
* def contentType = responseType
```gherkin
More content coming soon...