stale-optician-85950
10/01/2022, 7:28 PMCypress.Commands.add('returnElementText', element => {
cy.get(element).invoke('text');
});
Then call in the test as:
it('Best test ever', () => {
cy.returnElementText('[data-testid="unique-selector"]').then($elText => {
cy.log('$elText', $elText);
});
});