29 lines
917 B
Gherkin
29 lines
917 B
Gherkin
@profile
|
|
Feature: Profile Active Tab
|
|
Background:
|
|
Given I sign in as a user
|
|
|
|
Scenario: On Profile Home
|
|
Given I visit profile page
|
|
Then the active main tab should be Home
|
|
And no other main tabs should be active
|
|
|
|
Scenario: On Profile Account
|
|
Given I visit profile account page
|
|
Then the active main tab should be Account
|
|
And no other main tabs should be active
|
|
|
|
Scenario: On Profile SSH Keys
|
|
Given I visit profile SSH keys page
|
|
Then the active main tab should be SSH Keys
|
|
And no other main tabs should be active
|
|
|
|
Scenario: On Profile Preferences
|
|
Given I visit profile preferences page
|
|
Then the active main tab should be Preferences
|
|
And no other main tabs should be active
|
|
|
|
Scenario: On Profile Authentication log
|
|
Given I visit Authentication log page
|
|
Then the active main tab should be Authentication log
|
|
And no other main tabs should be active
|