-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inform users about unsuccessful POST requests #585
Comments
Read the official documentation on "Manually controlling if a request should be considered successful or a failure". Your request is not a failure because it returns 200 OK and content letting you know the password was incorrect. |
Locust is a loading test tool. If a request does return 200, it means the request has return and in your case, a correct return. |
You're right. My bad.
|
I wrote this
login
function that I run only inon_start
:And in http://localhost:8089 I can see multiple successful POST requests for
/login
. But when I enter incorrect password I still see all POST requests as valid ones (I don't see any error in console and in #fails column).The text was updated successfully, but these errors were encountered: