I am using UiPath to maintain data in a webpage via Chrome.
The Selector is “<webctrl id=‘input_forecast_2021_2_0’ tag=‘INPUT’ type=‘number’ />” which I understand only number can be typed in.
My input value is 12.5 and I use Type Into activity to key in. The data type should be string in Type Into. So I write “12.5”.
But when the robot run finish, the value in webpage is 5. Just keep the number after decimal point. If I write “12.55”, the result is 55.
I assume the issue is because of type=number in selector which is conflict with data type in Type into. Am I right?
Is there any solution to fix it?