I’m struggling trying to extract data from a Data Table. The things is I get the table empty because the “td” tags are empty. The data are inside an input tag with value attribute and UiPath can’t get that value with normal configuration. I’ve tried to change the ExtractMetadata field, but I don’t know how to do it.
The thing is:
I have an input tag inside td, and those are the values I need. How do I put it in the ExtractMetadata field to get those values?
I don’t know what you expect about “what was done”. It’s the activity Extract Structured Data. It’s not failing, it just returns an empty DataTable (no columns, no cells, just “”).
I used classic activity. I tried with modern, but same result, so I stayed with classic (all’s been developed with classic activities).
Thank you so much for your answers. Please find attach the HTML snippet. Also, I managed to somehow extract the data table, following all instructions again from the previous post you sent, but not quite all fields I need because ONE of those fields is a Select-Option, so when I try to extract the text, I get all three options I have, but I need the one as “selected=‘selected’” in option attribute (this is too much, sorry). Here is the metadata I used:
One more thing: is it really necessary to have all those tags to get to the last one? Because if one of them changes, then… this will be for nothing, right? HTML Snippet.txt (22.5 KB)
Again, sorry for this inconvenience and thank you for your help, really appreciated.
Finally it was that difficult to extract with all html tags that I finally extracted the data I needed (just two columns) with “get text” activity and made a table out of those two columns, instead of extracting all table with all those html tags.
I think it’s best like that, because if any html tag dissapears or changes, then the activity won’t work.