pyresttest icon indicating copy to clipboard operation
pyresttest copied to clipboard

Python Rest Testing

Results 102 pyresttest issues
Sort by recently updated
recently updated
newest added

It is possible to send request with chars like single quote character ? I'm escaping thats chars but I have exception: `found unknown escape character "'" in "", line 97,...

I am trying to do this: ``` --- - config: - testset: 'api test' - variable_binds: {headers: {'lang': 'en','version': '1.0', ... } - test: - group: 'user api' - name:...

Here is a sample log ``` DEBUG:Initial Test Result, based on expected response code: False Must include 'user' and 'token' parameters with request. [('date', 'Wed, 11 Jan 2017 09:53:08 GMT'),...

Hi, Implemented a full JSON validator, does it make sense to add this particular feature to pyresttest? If yes, let me add tests and documentation and send a pull request,...

This patch fixed the command line 'pyresttest' in the scripts folder for MS Windows OS. I also tested on my MAC OSx and it should work as before for Linux.

I've tried to implement a PUT request given below: ``` - test: - group: "My Group" - name: "PUT Test" - url: {template: '/myapi/$some_id'} - method: "PUT" - body: 'name=Some+Name&description=Some+description'...

I would like to make writing JSON post bodies a bit more friendly in regards to syntax, eg. pass in a dict as the body, instead of manually JSON serializing...

When using variables in templates as URL, pyresttest will add slashes if there is none present but also if the expanded form of the template has a starting slash: ```...

It may not be a bug and more of a question. I would like to use condition1 "AND" condition2 in validator section of YAML. I couldn't the comparator which also...

Hi @svanoort Im trying to write a custom extractor for json arrays. Essentially I have a list of objects and I would like to extract the UUID given a name...