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

Hi, I have REST server which returns only xml output, is there a way to parse GET request output xml data using pyresttest.

pyresttest doesn't appear to support GZIP requests / responses yet, could this be supported?

This covers https://github.com/svanoort/pyresttest/issues/170 It is part of the architecture changes for v1.8 - https://github.com/svanoort/pyresttest/issues/163 It is a precursor for v2.0 work, xUnit output, and a bunch of parsing/dynamic/variable handling stuff.

In Progress

url appears to use the path given on the command line while test does not.

If I host my endpoints with base URL at `http://example.com/dev/` and want to use pyresttest with params: `resttest.py http://example.com/dev/ test.yml`, it will try to hit URLs ignoring the `/dev/` portion....

Hello! I'm running on Mac and I'm getting this error when I try to run tests through pyresttest: ` ImportError: pycurl: libcurl link-time version (7.43.0) is older than compile-time version...

I want to use token into header, but It should be dynamic means I am getting token in the response of login API and I am storing into variable. I...

Following three new attribute 1.retries Number of time same api will call if it fails. It has scope at config as well as test level (priority). 2.delay Number of seconds...

Hey, is there currently a way to get the request response times for each test? The benchmarking feature is powerful, but I'd like to be able to gather this data...

my test file is : - config: - testset: "Demonstrate use of extract after creating a person" - variable_binds: {'username': '', 'password': ''} - test: - name: "Authentication using basic...