Very sorry for late reply .
Thanks Anthony for your prompt response .
I got one more problem . I have a RadPanelBar containing a list box . I tried to pick the list item and clik the list item .
I wanted to use Data driven testing for this and Tried the following code .
//--------------------------------------------------------------
Telerik.WebAii.Controls.Html.RadPanelBarItem ListItem1 = Find.ByExpression<Telerik.WebAii.Controls.Html.RadPanelBarItem>(
"id=pbTemplates", "|",Data["Col1"].ToString());
//MessageBox.Show(ListItem1.InnerText.ToString());
ListItem1.Select();
//-------------------------------------------------------------------------
I'm passing two parameters in the above step . One is "ID" and the second one is "tagIndex" , as ID is id of radpanelbar it is constant and the "tagIndex" is the index of list item which I wanted to pass from data table .
the problem I'm facing is , It is clicking on last list item in the column .
Could you please help me to get the solution for this.
Thanks in advance .
Best Regards ,
Surendranath