here you need to get all the values from the application at that its better to get the data based on key and using get text activity, extract all values by using regex
lets assume for Site code
take one assing activity,
in To: strSiteCode(create a string variable)
in Value : System.Text.RegularExpressions.Regex.Match(yourgettextVar,β(?<=SiteCode:)(.\w+)β).tostring
this regex will give the value of Sitecode
like this you can implement for other fields as well, to practice on regex https://regex101.com/ refer this site
If you found solution please mark this post as solution.
I donβt have anything new to add, however I can expand on previous answers to hopefully clarify why this is not working.
This is not the case for Table Extraction. Table Extraction works best on tables (data contained in table element on websites), but can be used for other cases where there are multiple records of data on a single page. For example results on shopping sites, or list of webpages for search engines.
Youβve shown us a single page which holds data only for one record. The best approachew here would be:
Use Get Text to get all marked field - one Get Text per one field
Use Get Text to retrieve text from whole webpage and use Regex to retrieve values for each field
Try 1 and only go for 2 if 1 is too problematic to implement.
Use the Get Text activity for each field. If some of the fields having multiple values then use the Split function to split the values to get the multiple data.