cypress-thenify icon indicating copy to clipboard operation
cypress-thenify copied to clipboard

parseFloat around cy.get command

Open bahmutov opened this issue 3 years ago • 1 comments

Total mode:

const subtotal = parseFloat(cy.get('#subtotal').invoke('text'))

is showing an error

Screen Shot 2022-10-04 at 20 22 30

// no error
const subtotal = cy.get('#subtotal').invoke('text').then(parseFloat)

bahmutov avatar Oct 05 '22 00:10 bahmutov

Code in https://github.com/bahmutov/cypress-await-example

bahmutov avatar Oct 05 '22 00:10 bahmutov