Question 1;
How to take the names one by one that the loop works ang gives one name each iteration (in selection field)
Question 2:
I want to skip first name (0001).
Could you clarify what do you want to do with the names? Do you have to do an action in the app with each particular name, or is it enough to scrap the names first to a Data Table?
As far as your error goes, please use the For Each Row activity that handles Data Tables. You can use your Data Table variable in that one directly.
After you get the full table, you can use a For Each Row activity to loop through all items. To skip the first row, you have a few options. The easiest would be to add an If activity in the loop and use something like that for the If statement: row.Item("JG").ToString = "0001"
and then doing nothing for Then and doing everything else in the Else.
Just to be sure, could you test options under this button:
Maybe there is an easy way to export to a file over there, ideally a csv file or other text format.
Once you indicate the element, in selectors you can find attribute for column Id and row id. For every row the row id will increase by 1. So you need replace the row id with counter. Now you can loop each row easily.
You write in your answers about the ROW ID. I can not see it. I’m using click image activity and indicatethe value “5200”. I create a counter and it stop. Click image does not have selector. An exemplary flowchart would be useful.
Scrap second “page” of items and append it to the first one
Remove duplicates
You can use the total counter as a boundary condition. Basically, add the number of visible (thus scraped) rows to a counter and have a While Do loop that will keep repeating if your counter is smaller than the total number of records.