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.
Happy Automation!!