I am extracting data from a webpage using “Extract Table Data” activity. Using the “Test Extraction” in the activity dropdown it is showing that the data is selected correct, and everything is looking good.
However, the selected data is not being saved to the datatable variable. (Yes, the scope is set correctly)
I am unable to find any reason for this, and have tried everything I can think of, so maybe one of you guys have a tip for what can cause this?
I am using the Windows version, all activities are updated to latest version, and the browser is Chrome.
So, pretty strange. The “Test Extraction” is working, and it is possible to write the test extraction data to a CSV and download. But, no data is being saved to the datatable. Checking the table in the locals window it is empty.
this can happen. In such a case we would recommend to cross-check the selector of the data scrapping / table extraction. feel free to share your xaml / implementation details with us
No, nothing seems to work in Windows, but everything works in Windows legacy. (Everything meaning different activities like screenscraping, datascraping, done by recording or not)
I ran into a very similar issue recently when using the “Extract Table Data” activity — everything looked perfect in the Test Extraction, but the DataTable remained empty at runtime.
Turns out the root cause was that the table wasn’t fully loaded/rendered when the extraction ran. In modern web pages (like the one I was working with), content is often loaded lazily — meaning it only appears after scrolling down the page or after a small delay.
Here’s what worked for me:
Added a “Mouse Scroll” activity to scroll down to where the table becomes visible.
Inserted a short “Delay” (e.g., 5–10 seconds) right after scrolling to give the page time to render the data.
Then executed the Extract Table Data activity.
After these changes, the data started populating into the DataTable correctly.