cypress-thenify
cypress-thenify copied to clipboard
parseFloat around cy.get command
Total mode:
const subtotal = parseFloat(cy.get('#subtotal').invoke('text'))
is showing an error

// no error
const subtotal = cy.get('#subtotal').invoke('text').then(parseFloat)
Code in https://github.com/bahmutov/cypress-await-example