Get raw html from UIElement

I have a UI Element that contains a table. How do I extract the raw html from the UIElement as a string

I want the output like this
“(table)…<(table)”

Hey @ezyra,

Please use the Get Attribute Activity with the attribute name and you will be able to get the desired result.

Use Get Attribute (“innerHtml”) activity. After, you can parse the retrieved text.

1 Like

Hi @ezyra,

Use Find Children activity and get all the elements in html table and therefore use for each activity and use Get attribute activity by giving attribute name and store it into a string,in for each itself use Add to collection activity to add string to collection variable.
where u will get all values.
Thanks…

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