Data Scraping Result Table

Hi everyone,

I hope to scrape a table containing the ticket information from a browser.

The table is as below:

image

I let the data scraping tool to automatically scrape the whole table.

With the log message:
image

I am able scrape the correct number of rows.

How can I actually check and see how the result output table looks like? I would need to use the info in the table for further logic building.

And how can I change the column names of the result table / delete some columns from the result table?

Thanks in advanced

Use the output datatable activity followed by a log message with the string result.

You can use remove datacolumn to delete relevant columns

To rename you can simply use an assign dt.Columns(“col1”).Name = “renamed” for example

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.