hi,
what is equalent of datatable.getrowcount ( QTP ) in CodedUI vsts2010?
Anitha
Hi anitha,
You can try using the below Code :
HtmlTable c_table = new HtmlTable(Browser); c_table.SearchProperties.Add("InnerText", "give ID", PropertyExpressionOperator.Contains); int x = c_table.RowCount;