RESTinstance
RESTinstance copied to clipboard
Robot Framework library for RESTful JSON APIs
Add the keyword "Unset Headers" to unset existing headers.
Currently `Set Headers` only updates the headers dictionary. There is no option to remove a header once it's set. Either `Set Headers` should support unsetting a header or there should...
Fix question mark in URL https://github.com/asyrjasalo/RESTinstance/issues/132
When I define a URL with question mark, the request removes it, for instance: ``` *** Settings *** Library REST https://acastiglia.testrail.io/index.php?/api/v2/ *** Keywords *** Wtf GET /get_case/1 Output request ```...
Header created using `Set Header` are not rested for following tests. This cause a weird behavior for tests like this one: ```robotframework *** Test Cases *** Login Login username [...]...
On the windows platform, python version 3.9.7, robot framework version - 4.1.1 On the windows platform , python version 3.9.7, robot framework version - 4.1.1 I have RESTinstance 1.0.2. I...
1. Is it possible to validate specific header from the response? 2. How to validate response time from the response?
Hello, How is it possible to use your library with an OpenAPI 3.0 Specification yaml file? With the following code ``` *** Settings *** Library REST url=http://localhost:8080 spec=petstore_openapi.yaml *** Variables...
The underlying request library supports the use of sessions. Do you think it would be feasible to provide a session parameter to the library?