Input valueAsNumber example

If the input element has type "number" you can check its property valueAsNumber to avoid converting the string value into a number.

<input type="number" id="age" value="22" />
<input type="number" id="glass" value="0.5" />
cy.get('#age')
  .should('have.value', '22')
  .and('have.prop', 'valueAsNumber', 22)

It works with floating point values too.

cy.get('#glass')
  .should('have.value', '0.5')
  .and('have.prop', 'valueAsNumber', 0.5)

📺 Watch this example in the video Input With Type Number Checking valueAsNumber Prop Exampleopen in new window.

See also