Hello, I would like to know how I edit a numerical field in a row of a table, when I add an amount for example 300.00 and I go to the other field, it places it at 0 and the one that I just edited I place 5.5, it places it at 0.001. Can you help me with this situation?
Maybe a simple WebUI.clearText(TO)
before entering your text might help.
WebUI.clearText(TO)
WebUI.setText(TO, "300")
WebUI.verifyElementAttributeValue(TO, "value", "\$300.00", 10)
However, if you are testing the row of a table as a web table, then it would be different. Some more information would help.