Add features for checking the "Active Tab" across various pages
This commit is contained in:
parent
f814da38bf
commit
cada511f8b
11 changed files with 537 additions and 9 deletions
28
features/profile/active_tab.feature
Normal file
28
features/profile/active_tab.feature
Normal file
|
@ -0,0 +1,28 @@
|
|||
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 Design
|
||||
Given I visit profile design page
|
||||
Then the active main tab should be Design
|
||||
And no other main tabs should be active
|
||||
|
||||
Scenario: On Profile History
|
||||
Given I visit profile history page
|
||||
Then the active main tab should be History
|
||||
And no other main tabs should be active
|
Loading…
Add table
Add a link
Reference in a new issue