fixes: https://tracker.ceph.com/issues/77489
Signed-off-by: Naman Munet <naman.munet@ibm.com>
// click on performance counters tab and check table is loaded
cy.contains('.nav-link', 'Performance Counters').click();
- // check at least one field is present
- this.getTableCell().should('be.visible').should('contain.text', 'objecter.op_r');
+ // check at least one field is present (objecter counter may have memory address suffix)
+ this.getTableCell()
+ .should('be.visible')
+ .invoke('text')
+ .should('match', /objecter.*\.op_r/);
// click on performance details tab
cy.contains('.nav-link', 'Performance Details').click();