nuxeo / FunkLoad

Functional and load testing framework for web applications, written in Python
http://funkload.nuxeo.org/
GNU General Public License v2.0
381 stars 86 forks source link

Expose follow redirect param for get and post methods #137

Closed ankitgoswami closed 9 years ago

ankitgoswami commented 9 years ago

Adding the follow_redirect parameter to the get and post methods enables one to test certain areas of an application without adding load on other areas. For example, if you only want to load test your user logins but do not want to add load to any of the following pages, you can do so by calling the get or post methods with follow_redirect=False.

bdelbosc commented 9 years ago

Thanks