I need validating if values of the table column are greater Than 0.01 and least than 99999999.99
The table have 230 rows
I have already did this:
cy.get('#credits [align="right"]') .invoke('text') .then(parseFloat) .should('be.gte', 0.01)
but in the results appear this message:expected 'Infinity' to be at least 0.01
should I do a for?