# SUP-306 - Frontend define DATA OPTIONS between Sinbad or imported data
## Test Scenarios
#### Test Scenario 1
```gherkin
Scenario: As an Admin, I should be able to see Data Options menu
Given the user has logged in as Admin
And the user is on Sales Performance Page
When the user clicks Data Options menu dropdown
Then show Data Options menu for Sinbad Data & Imported Data
```
#### Test Scenario 2
```gherkin
Scenario Outline: As an Admin, I want to change Data Options source
Given the user has logged in as Admin
And the user has opened Data Options dropdown menu
And the user is currently on <currentData>
When the user click <changedData>
Then show data table based on <changedData>
Examples:
| currentData | changedData |
| ------------ | ------------ |
| importedData | sinbadData |
| sinbadData | importedData |
```
###### tags: `Sprint 7` `SBP`