Welcome to mirror list, hosted at ThFree Co, Russian Federation.

active_tab.feature « profile « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7801ae5b8ca66d1f9c319399dea8820239b28e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@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 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