This is my UI actually looks
parameter is key and Value is value. In excel I’m having two columns as above parameter and value columns. I want to compare whether the excel data is present in this UI.
Have you tried Extract Table Data/ Table Extraction?
Case 1:
If Extract Table Data/ Table Extraction worked then from table data you can search/filter/apply LINQ to check
Case 2:
If that did not work try to use get text activity to scrap the text and convert it to array by splitting it at newline(separator which you find after extracting the data).
Then you can search the key value pair from the array
Let’s say I am scraping the UiDemo App using below and splitting the data at new line to convert it to array and search for any key and corresponding value
StrBdy.Split(Environment.NewLine.ToCharArray(), StringSplitOptions.RemoveEmptyEntries)
Then use Array.IndexOf(ArrKey,“SearchKeyValue”) to chk whether key/value exists.
Remember if not present then it will give -1
And note that once you find the key…the value is the next element.