HTTP REQUESTS
Headers and Cookies
Overview
Control request headers and cookies for authentication, content negotiation, and stateful testing.
Setting Headers
* header Authorization = 'Bearer ' + authToken
* header Content-Type = 'application/json'
* header Accept = 'application/json'
```gherkin
## Multiple Headers
```gherkin
* headers { Authorization: '#(token)', Accept: 'application/json' }
```gherkin
## Cookie Management
```gherkin
* cookie sessionId = 'abc123'
* cookies { sessionId: 'abc123', theme: 'dark' }
```gherkin
More content coming soon...