-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreating_account.feature
26 lines (21 loc) · 1.12 KB
/
creating_account.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Feature: Creating new account
Background:
Given the user clicked on My Account button
And the user selected Register from the dropdown menu
Scenario: Creating new account and not agreeign to the Privacy Policy
Given the user filled in all blank fields
And the user has not checked the agreement to the Privacy Policy
When the user clicks on the Continue button
Then a warning will be displayed
And the user can not continue with the account creation
Scenario: Creating new account with email address already in use
Given the user filled in all blank fields
And the user has checked the agreement to the Privacy Policy
When the user clicks on the Continue button
Then a warning will be displayed
And the user can not continue with the account creation
Scenario: Creating new account with email address not already in use
Given the user filled in all blank fields
And the user has checked the agreement to the Privacy Policy
When the user clicks on the Continue button
Then new account will be created