Hi,
I am trying to fill out a web form. I am trying to insert decimal numbers (e.g. "12.34") into a basic numeric input field:
<input type="number" placeholder="Price" class="form-control" id="price">
and I can't find a way to do it. If I set or append a whole decimal number, only decimals get inserted (everything before the dot and the dot are missing, e.g. 12.34 => 34), and even only inserting the dot symbol into the field doesn't insert anything, same goes for the comma symbol. The element was found via the recorder and everything works normal on type="text" inputs.
Am I doing something wrong? Any help would be appreciated.
Thanks