Hello
I’m struggling to write this code and apply it while using the Extract Structured Data activity. Could you please help me with it? I really need assistance. Thank you.
Suppose for example declare an Integer variable for counter(counter), use second variable(rowSelector) which should be of string type to assign the selector as above, and set the variable rowSelector in place of the selector property
Initialize counter
Start loop
assign rowSelector
(This should update the rowSelector in each loop resulting in new selector for each new row found in PDF
)
Check if selector exists / present
Fetch value using the rowSelector if the selector exists
Increment loop
End loop
Do While ElementExists(rowSelector)
Assign rowSelector = “your_base_selector_here” + counter.ToString()
If ElementExists(rowSelector)
Use Extract Structured Data activity with rowSelector
Process extracted data
Assign counter = counter + 1
Else
Exit Do
End If