When pasting the sample code from the demo code, I see the following error:
http://www.telerik.com/automated-testing-tools/support/documentation/user-guide/code-samples/html/table-search-and-paging.aspx
Exception thrown executing coded step: '[Row_Index] : @"Indxing through Active'.
InnerException:
System.NullReferenceException: Object reference not set to an instance of an object.
at PortalC_Sharp.ExpDate_Extract.Row_Index() in C:\MyProjects\PortalC_Sharp\ExpDates\ExpDate Extract.tstest.cs:line 119
------------------------------------------------------------
'8/8/2012 9:23:57 AM' - Detected a failure. Step is marked 'ContinueOnFailure=False' aborting test execution.
Error 1 The type 'PortalC_Sharp.ExpDates.HtmlTable' cannot be used as type parameter 'TControl' in the generic type or method 'ArtOfTest.WebAii.Core.Find.ByExpression<TControl>(params string[])'. There is no implicit reference conversion from 'PortalC_Sharp.ExpDates.HtmlTable' to 'ArtOfTest.WebAii.Controls.Control'. C:\MyProjects\PortalC_Sharp\ExpDates\HtmlTable.tstest.cs 76 31 PortalC_Sharp
Code Entered:
HtmlTable table = Find.ByExpression<HtmlTable>(
"id=Grid"
,
"|"
,
"tagIndex=table:1"
);
HtmlSpan next = Find.ByExpression<HtmlSpan>(
"class=t-icon t-arrow-next"
);
HtmlAnchor a = Find.ByExpression<HtmlAnchor>(
"href=/aspnet-mvc/Grid?ajax=True&Grid-page=2"
);