I have an issue with cypress code: it’s not taking the right amount. Sometimes it just removes my integer value and enter only 0.
cy.get('#wallet-transfer-transfer-funds-input-amount').type('4300.00').click({force:true})
like you see I have given the amount 4300, but it over writes and will enter 0.00:
Also let’s say if give the value 1234 or any other value, it will take 4.00 $ only, or 0.1234 or 4.123; it’s very random.
I am expecting the value should be same as code when automating a test script for a web form.
New contributor
Pooja Patel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
5