How to convert System.Data.DataRowView to Sctring format and display the output in a message box

How do I convert the output is displayed in the picture below into a string format

I have captured the data from a desktop based application
There are no text or Inner text selectors which display the value.

@Ruchita_Patil

Please try this String.Join(",",check.ItemArray)

cheers

Hi,

Use check(0).tostring or check(1).tostring

@Ruchita_Patil,

Check this

 string.Join(" ", yourDataRow.ItemArray.[Select](Function(c) c.ToString()).ToArray())

Hi

Thank you for the suggestion, I tried, but got the following error.

Hi,

I’m a bit confused, if you’re using a Get Text activity, is your variable “check” declared as a String, or you’re trying to extract the entire content of the dropdown as a list of DataRow items?