]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/dashboard.po.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / ui / dashboard.po.ts
diff --git a/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/dashboard.po.ts b/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/dashboard.po.ts
deleted file mode 100644 (file)
index 42d63ef..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-import { PageHelper } from '../page-helper.po';
-
-export class DashboardPageHelper extends PageHelper {
-  pages = { index: { url: '#/dashboard', id: 'cd-dashboard' } };
-
-  infoGroupTitle(index: number) {
-    return cy.get('.info-group-title').its(index).text();
-  }
-
-  clickInfoCardLink(cardName: string) {
-    cy.get(`cd-info-card[cardtitle="${cardName}"]`).contains('a', cardName).click();
-  }
-
-  infoCard(indexOrTitle: number | string) {
-    cy.get('cd-info-card').as('infoCards');
-
-    if (typeof indexOrTitle === 'number') {
-      return cy.get('@infoCards').its(indexOrTitle);
-    } else {
-      return cy.contains('cd-info-card a', indexOrTitle).parent().parent().parent().parent();
-    }
-  }
-
-  infoCardBodyText(infoCard: string) {
-    return this.infoCard(infoCard).find('.card-text').text();
-  }
-
-  infoCardBody(infoCard: string) {
-    return this.infoCard(infoCard).find('.card-text');
-  }
-}