HTTP RESPONSES
Response Time Analysis
Overview
Track and validate API response times to ensure performance requirements and user experience.
Time Measurement
* def startTime = function(){ return new Date().getTime() }
* call startTime
* method get
* status 200
* assert responseTime < 2000
```gherkin
## Performance Thresholds
```gherkin
* configure retry = { count: 3, interval: 1000 }
* match responseTime < 1500
```gherkin
More content coming soon...