Hope the below suggestions would help you resolve this
First on typing values on correct files make sure the scope or region where u want to type is define
That is use ATTACH BROWSER or ATTACH WINDOW activity and define the region where the field to be typed in is there
And then inside it mention the TYPE INTO activity so that it doesn’t miss the field or the typing action
Second while typing if u feel like it’s typing fast or skipping values there are two ways to handle it
Either we can slow down the typing speed by including some delay between key strokes
I’m type into activity I can find a property called DelayBetweenKeys and put some milliseconds there
Other way is by following copy paste method instead of typing
Here u just pass the value to SET TO CLIPBOARD activity and then use SEND HOT KEY with ctrl+v as key
So this will paste instead of typing
Finally if u want to handle the type into exception that can possibly occur
Either surround that type into with try catch or retry scope if u have less number of type into activities
If u have more number of that activity it is good to use GLOBAL EXCEPTIONAL HANDLER so that it can capture that error and gets logged
Before typing the values into the field, please validate the data and then type.
Or if you are not sure on validating the data. Take try catch scope for the next activity which is after type into and do the steps which you will do manually after getting the error in the catch block.
tick retry and set timeout = small number e.g. 3, this will make it so that every 3 seconds, it will check if the text typed = your input, if its not equal, it will retry the type action
If the time set here (DEFAULT 30 seconds) has elapsed and the text is still not equal to your input, it will throw an exception