2023-07-04 19:37:50 +02:00
|
|
|
===
|
|
|
|
GET request
|
|
|
|
===
|
|
|
|
|
|
|
|
GET https://somewhere.com
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(source_file
|
|
|
|
(request_declaration
|
2023-07-04 20:07:50 +02:00
|
|
|
(request_literal)
|
|
|
|
(url)))
|
2023-07-04 19:37:50 +02:00
|
|
|
|
|
|
|
===
|
2023-07-04 20:07:50 +02:00
|
|
|
POST request
|
|
|
|
===
|
|
|
|
|
|
|
|
POST https://somewhere.com?query=something
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(source_file
|
|
|
|
(request_declaration
|
|
|
|
(request_literal)
|
|
|
|
(url)))
|
|
|
|
|
|
|
|
===
|
|
|
|
Headers
|
|
|
|
===
|
|
|
|
|
|
|
|
POST https://somewhere.com?query=something
|
|
|
|
some: header
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(source_file
|
|
|
|
(request_declaration
|
|
|
|
(request_literal)
|
|
|
|
(url))
|
|
|
|
(header_declaration
|
|
|
|
(header_name)
|
|
|
|
(header_value)))
|
|
|
|
|
|
|
|
===
|
|
|
|
More Headers
|
|
|
|
===
|
|
|
|
|
|
|
|
POST https://somewhere.com?query=something
|
|
|
|
some: header
|
|
|
|
A123a-123: someA asdfasdf asdf c123
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(source_file
|
|
|
|
(request_declaration
|
|
|
|
(request_literal)
|
|
|
|
(url))
|
|
|
|
(header_declaration
|
|
|
|
(header_name)
|
|
|
|
(header_value)))
|
|
|
|
|
|
|
|
===
|
|
|
|
HTTP Status codes 200
|
|
|
|
===
|
|
|
|
|
|
|
|
POST https://somewhere.com?query=something
|
|
|
|
|
|
|
|
HTTP 200
|
|
|
|
---
|
|
|
|
|
|
|
|
(source_file
|
|
|
|
(request_declaration
|
|
|
|
(request_literal)
|
|
|
|
(url))
|
|
|
|
(response
|
|
|
|
(scheme_literal)
|
|
|
|
(status_code_pattern)))
|
|
|
|
|
|
|
|
===
|
|
|
|
HTTP Status codes 302
|
2023-07-04 19:37:50 +02:00
|
|
|
===
|
|
|
|
|
|
|
|
POST https://somewhere.com?query=something
|
|
|
|
|
2023-07-04 20:07:50 +02:00
|
|
|
HTTP 302
|
2023-07-04 19:37:50 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
(source_file
|
|
|
|
(request_declaration
|
2023-07-04 20:07:50 +02:00
|
|
|
(request_literal)
|
|
|
|
(url))
|
|
|
|
(response
|
|
|
|
(scheme_literal)
|
|
|
|
(status_code_pattern)))
|