BigW Consortium Gitlab

active_tab.feature 890 Bytes
Newer Older
1
@profile
2
Feature: Profile Active Tab
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  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

21 22 23
  Scenario: On Profile Preferences
    Given I visit profile preferences page
    Then the active main tab should be Preferences
24 25
    And no other main tabs should be active

26 27 28
  Scenario: On Profile Audit Log
    Given I visit Audit Log page
    Then the active main tab should be Audit Log
29
    And no other main tabs should be active