Hi,
I need to test if a row is selected in a Telerk Grid using Telerik Test Framework. Below is the snippet of code I'm trying.
public bool HasRowSelected(IFrameworkElement row)
{
return row.Find.ByName<Rectangle>("BackgroundBorder").Opacity > 0;
}
However it doesn't seem to work. Could you please suggest how can I achieve this? Attached is the sample grid.