Screenscraping a table in citrix environment

Hello,
I’m trying to screen scape activity a table in citrix environment. With the result of obtaining in a Native way a full text hightlighted. The output provided is an IEnumerable Variable
I have impose a loop condition stipulating that if the dataTable is empty the loop should stop.
How could I verify that the table is empty? I was thinking of a DataTable variable as output in order to check of the emptyness of it? How could I proceed? Could someone give me an hint?
Thanks in advance

Step 1: Create a DataTable(dt) variable as output.
Step 2: Check the condition: dt.Rows.Count > 0 that mean It’s not null.

1 Like