summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/integration/common/create-cluster/create-cluster.feature.po.ts
blob: d18c348554691aac3c2e854b9a240a305023f9b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Given, Then } from 'cypress-cucumber-preprocessor/steps';

Given('I am on the {string} section', (page: string) => {
  cy.get('cd-wizard').within(() => {
    cy.get('.nav-link').should('contain.text', page).first().click();
    cy.get('.nav-link.active').should('contain.text', page);
  });
});

Then('I should see a message {string}', () => {
  cy.get('cd-create-cluster').should('contain.text', 'Please expand your cluster first');
});