# EC1-401 - Functionality : Add new tab for visibility sku
## Test Scenarios
#### Test Scenario 1
```gherkin
Scenario: As an Admin, I should be able to see 'Visibility' section
Given the user has logged in as Admin
And the user is on Manage Product Page
When the user clicks catalogue <A>
And the user redirects to catalogue <A> details page
Then show Visibility Menu Section
```
#### Test Scenario 2
```gherkin
Scenario: As an Admin, I want to access Visibility section
Given the user has logged in as Admin
And the user is on catalogue <A> Details Page
When the user clicks Visibility Section Menu
Then redirects user to Visibility Section Page
```
#### Test Scenario 3
```gherkin
Scenario: As an Admin, I should be able to see catalogue's status field
Given the user has logged in as Admin
And the user is on catalogue <A> Details Page
When the user clicks Visibility Section Menu
Then show catalogue <A> status field
```
#### Test Scenario 4
```gherkin
Scenario: As an Admin, I should be able to see catalogue's type field
Given the user has logged in as Admin
And the user is on catalogue <A> Details Page
When the user clicks Visibility Section Menu
Then show catalogue <A> type field
```
#### Test Scenario 5
```gherkin
Scenario Outline: As an Admin, I should be able to see correct value for catalogue's status field
Given the user has logged in as Admin
And the user is on catalogue <A> Details Page
And catalogue <A> has <catalogueStatus>
When the user clicks Visibility Section Menu
Then show catalogue <A> status as <catalogueStatus>
Examples:
| catalogueStatus |
| --------------- |
| active |
| inactive |
```
#### Test Scenario 6
```gherkin
Scenario Outline: As an Admin, I should be able to see correct value for catalogue's type field
Given the user has logged in as Admin
And the user is on catalogue <A> Details Page
And catalogue <A> has <catalogueType>
When the user clicks Visibility Section Menu
Then show catalogue <A> status as <catalogueType>
Examples:
| catalogueType |
| ------------- |
| bonus |
| regular |
```
###### tags: `Sprint 24` `Ecommerce 1` `SSC`