robotframework-requests icon indicating copy to clipboard operation
robotframework-requests copied to clipboard

Robot Framework keyword library wrapper for requests

Results 47 robotframework-requests issues
Sort by recently updated
recently updated
newest added

I am using version 0.9.4 on RF 4.1.3. I have weird behavior of disable_warnings=1. I set this option on create session together with max_retries=5. To check if I have a...

If we do a GET request that expects a JSON response, like so: ```robot ${response}= RequestsLibrary.GET ${url} ``` then if the server returns 204 (no content) instead of returning JSON,...

accepted
bug

Adds keywords for CONNECT and TRACE HTTP methods. Fixes documentation for default value for allow_redirects. Limits versions for flask and werkzeug to make sure local http server works. Fixes some...

feature

This Pull request adds a keyword to get the response from the last request. The keyword can be used to create much cleaner testcases because the response does not have...

Uploading a list of files with the same key is supported by the Requests library. This allows the receiving server to accept a list of files for the same key,...

https://github.com/MarketSquare/robotframework-requests/blob/233ff7cd2607344c08ee3649920a8083e36a835d/src/RequestsLibrary/RequestsKeywords.py#L52 It seems that a new change was introduced and now all the files used for POST have to be in the specific format. However, this is not the case...

RequestLibrary Post On session fail with "is not valid Latin-1. Use body.encode('utf-8') if you want to send it encoded in UTF-8." when use arabic char but Post request pass

Documents the credentials leakage fix.

It is expected behaviour that sessions have its own timeouts. Though the last used timeout in `Create Session` keyword overwrites the timeout value for all previous sessions. Please check test...