Is there a way to make sure that AB gets proper responses from server? For example:
- To force it to output the response of a single request to STDOUT OR
- To ask it to check that some text fragment is included into the response body
I want to make sure that authentication worked properly and i am measuring response time of the target page, not the login form.
Currently I just replace ab -n 100 -c 1 -C "$MY_COOKIE" $MY_REQUEST
with curl -b "$MY_COOKIE" $MY_REQUEST | lynx -stdin
.
If it's not possible, is there an alternative more comprehensive tool that can do that?