Hello, I am trying to get data from web by using “Get Text” activity.
However, at a certain point on web, I can’t use “anchor” to locate the text I want.
When using anchor, the frame turn red. (as in picture)
This only happen when there are more than 1 row of the data I want to collect.
When I run the code it shows error
"Multiple similar matches found. Could not uniquely identify the user-interface element for this action. Edit the element, run validation, and add anchors in order to ensure the element is uniquely identified.
Questions
Is there a way to create multiple anchors? If so, please explain how?
Is “Get Text” the right activity for this task?
My objective is to get each data value and put them into columns that I prepare beforehand.
I recommend to use UiExploer then check which attribute can be used. In this case we might be able to use TableRow and TableColumn and they might be stable than anchor.
Or it might be good to use data scraping (table extraction) to get table data as DataTable.
@Yoichi@Gokul_Jayakumar
Ok, I use “Table Extraction” and get new data table.
Is there a way to transpose from row to column so that I can put them in the table that I prepared?
Thanks