X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Fpybind%2Fmgr%2Fdashboard%2Ffrontend%2Fcypress%2Fe2e%2Fcluster%2Flogs.po.ts;h=5c34eee5ceef01cd928a19a950f0b4a182c794cd;hb=aee94f6923ba628a85d855d0c5316d0da78bfa2a;hp=7efd8a6528a3ea32360196796ced12ac61e32c98;hpb=27f45121cc74e31203777ad565f78d8aad9b92a2;p=ceph.git diff --git a/ceph/src/pybind/mgr/dashboard/frontend/cypress/e2e/cluster/logs.po.ts b/ceph/src/pybind/mgr/dashboard/frontend/cypress/e2e/cluster/logs.po.ts index 7efd8a652..5c34eee5c 100644 --- a/ceph/src/pybind/mgr/dashboard/frontend/cypress/e2e/cluster/logs.po.ts +++ b/ceph/src/pybind/mgr/dashboard/frontend/cypress/e2e/cluster/logs.po.ts @@ -16,18 +16,21 @@ export class LogsPageHelper extends PageHelper { cy.contains('.nav-link', 'Audit Logs').click(); // Enter an earliest time so that no old messages with the same pool name show up - cy.get('.ngb-tp-input').its(0).clear(); + cy.get('.ngb-tp-input') + .its(0) + .then((input) => { + cy.wrap(input).clear(); - if (hour < 10) { - cy.get('.ngb-tp-input').its(0).type('0'); - } - cy.get('.ngb-tp-input').its(0).type(`${hour}`); + if (hour < 10) cy.wrap(input).type(`${hour}`); + }); - cy.get('.ngb-tp-input').its(1).clear(); - if (minute < 10) { - cy.get('.ngb-tp-input').its(1).type('0'); - } - cy.get('.ngb-tp-input').its(1).type(`${minute}`); + cy.get('.ngb-tp-input') + .its(1) + .then((input) => { + cy.wrap(input).clear(); + + if (minute < 10) cy.wrap(input).type(`${minute}`); + }); // Enter the pool name into the filter box cy.get('input.form-control.ng-valid').first().clear().type(poolname); @@ -46,17 +49,21 @@ export class LogsPageHelper extends PageHelper { cy.contains('.nav-link', 'Audit Logs').click(); // Enter an earliest time so that no old messages with the same config name show up - cy.get('.ngb-tp-input').its(0).clear(); - if (hour < 10) { - cy.get('.ngb-tp-input').its(0).type('0'); - } - cy.get('.ngb-tp-input').its(0).type(`${hour}`); - - cy.get('.ngb-tp-input').its(1).clear(); - if (minute < 10) { - cy.get('.ngb-tp-input').its(1).type('0'); - } - cy.get('.ngb-tp-input').its(1).type(`${minute}`); + cy.get('.ngb-tp-input') + .its(0) + .then((input) => { + cy.wrap(input).clear(); + + if (hour < 10) cy.wrap(input).type(`${hour}`); + }); + + cy.get('.ngb-tp-input') + .its(1) + .then((input) => { + cy.wrap(input).clear(); + + if (minute < 10) cy.wrap(input).type(`${minute}`); + }); // Enter the config name into the filter box cy.get('input.form-control.ng-valid').first().clear().type(configname);