diff --git a/src/app/features/001_sign_up.feature b/src/app/features/001_sign_up.feature index 4cce0bff..98bd43ad 100644 --- a/src/app/features/001_sign_up.feature +++ b/src/app/features/001_sign_up.feature @@ -7,14 +7,14 @@ So that I can use the application Scenario: User creates a new account filling all fields with valid data Given I am on the create account page When I fill the user registration form - When I attach a profile picture + And I attach a profile picture And I click the Cadastrar button Then I should see the welcome page Scenario: User creates a new account successfully and check the option to see near colleges Given I am on the create account page When I fill the user registration form - When I attach a profile picture + And I attach a profile picture And I check the checkbox to see the page's wizard And I click the Cadastrar button Then I should see the page's wizard @@ -22,8 +22,8 @@ Scenario: User creates a new account successfully and check the option to see ne Scenario Outline: User try to create a new account with invalid data Given I am on the create account page When I fill the user registration form - When I fill in "
" with "" - When I attach a profile picture + And I fill in "" with "" + And I attach a profile picture And I click the Cadastrar button Then I should see the red failed toast @@ -48,8 +48,8 @@ Scenario: User try to create a new account with invalid password format Given I am on the create account page When I fill the user registration form When I fill in "user_password" with "cinco" - When I fill in "user_password_confirmation" with "cinco" - When I attach a profile picture + And I fill in "user_password_confirmation" with "cinco" + And I attach a profile picture And I click the Cadastrar button Then I should see the red failed toast @@ -57,7 +57,7 @@ Scenario: User try to create a new account with existing user nickname Given There is an unregistered user And I am on the create account page When I fill the user registration form - When I fill in "user_nickname" with "teste002.user" - When I attach a profile picture + And I fill in "user_nickname" with "teste002.user" + And I attach a profile picture And I click the Cadastrar button Then I should see the red failed toast \ No newline at end of file