what error message it is throwing?
“Date Submitted” does not belong to the table
Can you share your screen with me ?
i am in the client machine…so sharing is blocked
i can share the excel file retried after scraping…
Messaging u
I am also using client machine on skype or teams we can share it…
Anyhow ,
Check your column name when you are scraping data I am 110% sure you are giving different column name on both sides. Validate it
please share your teams id
Hi Ghazanfar,
The extract dataTable is giving Null result…rescraped it but still its not working… ![]()
Are you scrapping it in a right way?
Do scraping same like you did yesterday.
Or check metaData selectors . Are the selectors same or changing on every page reload?
If they are changing then make them in such a way that it does not give null value ok?
yeah…parentId selector is changing everytime…working on it only
Yeah Then discard parent id or make it in such a way that if it changes then it will not cause any issue regarding data.
trying…
Good .
Dont worry you can do it ![]()
Hi @Zara
You can achieve this by extracting the web table into a DataTable, finding the row with the latest date, and then clicking the download link from that same row.
A possible approach is:
-
Use Extract Table Data to extract the web table into
dtData. -
Identify the Date column and convert its values to
DateTime. -
Find the row having the latest date:
latestRow = dtData.AsEnumerable().OrderByDescending(Function(r) DateTime.Parse(r("Date").ToString)).First()
-
Retrieve a unique value from
latestRow, such as the Form Name/ID. -
Use that value to identify the corresponding Download link in the web table.
-
Click the Download link for that row.
If there are multiple download links in the same row, you can use a relative/anchored selector so UiPath clicks the link belonging specifically to the row containing the latest date.
This approach is better than clicking based on row number because the table can change dynamically.