To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorPassword Feedback
- Scenarios
-
- View password feedback on sign up page
- Cannot submit if strength is none
- Cannot submit if any requirement is not met
- Cannot submit if passwords don't match
- View password feedback on sign up page
-
- *
- I visit "/signup"
- *
- I enter "Debbie Tester" into the "Name" input field
- *
- I enter "[email protected]" into the Email field
- *
- I enter "paSA" into the "Password" input field
- *
-
the password feedback should have
unchecked 8 or more characters checked 2 or more upper and lowercase letters unchecked 2 or more numbers unchecked 2 or more special characters - *
- the password strength should be "none"
- *
- I enter "paSA111" into the "Password" input field
- *
-
the password feedback should have
unchecked 8 or more characters checked 2 or more upper and lowercase letters checked 2 or more numbers unchecked 2 or more special characters - *
- the password strength should be "none"
- *
-
I should see the password warning
Avoid any combination that has 3 or more successive identical characters
- *
- I enter "[email protected]" into the "Password" input field
- *
-
the password feedback should have
checked 8 or more characters checked 2 or more upper and lowercase letters checked 2 or more numbers checked 2 or more special characters - *
- the password strength should be "none"
- *
-
I should see the password warning
Avoid any combination that has your user name within
- *
- I enter "[email protected]" into the "Password" input field
- *
-
the password feedback should have
checked 8 or more characters checked 2 or more upper and lowercase letters checked 2 or more numbers checked 2 or more special characters - *
- the password strength should be "moderate"
- *
- I enter "[email protected])1" into the "Password" input field
- *
-
the password feedback should have
checked 8 or more characters checked 2 or more upper and lowercase letters checked 2 or more numbers checked 2 or more special characters - *
- the password strength should be "strong"
- Cannot submit if strength is none
-
- Given
- I visit "/signup"
- And
- I enter "Debbie Tester" into the "Name" input field
- And
- I enter "[email protected]" into the Email field
- And
- I enter "[email protected]" into the "Password" input field
- And
-
the password feedback should have
checked 8 or more characters checked 2 or more upper and lowercase letters checked 2 or more numbers checked 2 or more special characters - And
- the password strength should be "none"
- When
- I enter "[email protected]" into the "Confirm password" input field
- And
- I click the "Create an account" button
- Then
- the "password" field should have the text ""
- And
- the "passwordConfirmation" field should have the text ""
- And
-
I should not see the success message
A confirmation email has been sent, please verify before logging in
- Cannot submit if any requirement is not met
-
- Given
- I visit "/signup"
- And
- I enter "Debbie Tester" into the "Name" input field
- And
- I enter "[email protected]" into the Email field
- And
- I enter "paSA1212121212" into the "Password" input field
- And
-
the password feedback should have
checked 8 or more characters checked 2 or more upper and lowercase letters checked 2 or more numbers unchecked 2 or more special characters - And
- the password strength should be "none"
- When
- I enter "paSA1212121212" into the "Confirm password" input field
- And
- I click the "Create an account" button
- Then
- the "password" field should have the text ""
- And
- the "passwordConfirmation" field should have the text ""
- And
-
I should not see the success message
A confirmation email has been sent, please verify before logging in
- Cannot submit if passwords don't match
-
- Given
- I visit "/signup"
- And
- I enter "Debbie Tester" into the "Name" input field
- And
- I enter "[email protected]" into the Email field
- And
- I enter "[email protected]" into the "Password" input field
- When
- I enter "[email protected]#" into the "Confirm password" input field
- And
- I click the "Create an account" button
- Then
-
I should see the error message
Passwords do not match
Last published over 3 years ago by Christie Yoo.