# SSC - Create Store from SSC
## Test Scenarios
#### Test Scenario 1
```gherkin
Scenario: Failed to create store due to blank mandatory field
Given the user has logged into SSC
And the user is on SSC Store List Page
When the user clicks 'Add' button
And the user fill 'Store Name Section' with blank
And the user fill other input fields
Then show 'Save' button as disabled button
And the user cant click the 'Save' button
```
#### Test Scenario 2
```gherkin
Scenario: Failed to create store due to duplicate mandatory field input
Given the user has logged into SSC
And the user is on SSC Store List Page
When the user clicks 'Add' button
And the user fill 'Store Name Section' with existing other store's name
And the user fill other input fields
And the user click 'Save' button
Then the user failed to add new store
And show error message notification
```
#### Test Scenario 3
```gherkin
Scenario: Successfully created a new store
Given the user has logged into SSC
And the user is on SSC Store List Page
When the user clicks 'Add' button
And the user fill all mandatory input fields correctly
And the user clicks 'Save' button
Then new store successfully created
And the user redirects to Store List Page
```
#### Test Scenario 4
```gherkin
Scenario:
Given
And
When
Then
```
###### tags: `Sprint 16` `Ecommerce` `SSC` `Sinbad`