summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/integration/orchestrator/workflow/01-create-cluster-welcome.feature
blob: 6ba2fc4fc54c06210c42b8d781ec408b4ee1abba (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
Feature: Cluster expansion welcome screen

    Go to the welcome screen and decide whether
    to proceed to wizard or skips to landing page

    Background: Login
        Given I am logged in

    Scenario: Cluster expansion welcome screen
        Given I am on the "welcome" page
        And I should see a button to "Expand Cluster"
        And I should see a button to "Skip"
        And I should see a message "Please expand your cluster first"

    Scenario: Go to the Cluster expansion wizard
        Given I am on the "welcome" page
        And I should see a button to "Expand Cluster"
        When I click on "Expand Cluster" button
        Then I am on the "Add Hosts" section

    Scenario: Skips the process and go to the landing page
        Given I am on the "welcome" page
        And I should see a button to "Skip"
        When I click on "Skip" button
        And I confirm to "Continue"
        Then I should be on the "dashboard" page