summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/integration/cluster/inventory.po.ts
blob: 5a9abdc036c915d2cd651f2e7adf127c3abb25a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { PageHelper } from '../page-helper.po';

const pages = {
  index: { url: '#/inventory', id: 'cd-inventory' }
};

export class InventoryPageHelper extends PageHelper {
  pages = pages;

  identify() {
    // Nothing we can do, just verify the form is there
    this.getFirstTableCell().click();
    cy.contains('cd-table-actions button', 'Identify').click();
    cy.get('cd-modal').within(() => {
      cy.get('#duration').select('15 minutes');
      cy.get('#duration').select('10 minutes');
      cy.get('cd-back-button').click();
    });
    cy.get('cd-modal').should('not.exist');
    cy.get(`${this.pages.index.id}`);
  }
}