How to type into the data

Hi All,

I want type the 6 digits numbers into a webportal which is I am trying to type, but there are six boxes how to type the six digit numbers into that boxes, if there is one box I would have typed easily, but There are six boxes ( if 123456 is the six digit numbers then I need to enter 1 in 1st box, 2 in second box etc and till 6 in sixth box .
Please someone help how to that there are 100 records(six digit numbers) How I enter one by one in to that boxes using for each.
The column name is “GroupNumber”

Thanks in advance

Hi @HeartCatcher ,

Could can split the number into characters and type those characters in one by one →

CurrentRow(ColumnNameOrIndex).ToString.ToCharArray()

Loop through each Character in the Array of Characters and type it into the boxes one by one.
Ofcourse, you might have to figure out a logic for selecting each box, or you might have to keystroke and enter the values one by one.

Kind Regards,
Ashwin A.K

Can you please explain me more

Members group number to be filled

Hi @HeartCatcher ,

Here is an example of the logic I detailed above →

image
image

Once the characters are split, you can then enter then into individual boxes on the UI.
You can replace the Log Message Activity with the Type Into Activity.

Since I don’t have access to the website you have shared above, I won’t be able to refine the selector to make it dynamic enough to move across the boxes.

SplitItemsIntoCharacters.xaml (8.5 KB)

Kind Regards,
Ashwin A.K
i