Hi,

I think this will do the trick:

ITable table = browser.Table(Find.ByClass("table"));
ITableRowCollection rows = table.TableRows.Filter(Find.ByClass("tableRows"));
ITableRow row = rows[2];

ITableRow inherits IElementsContainerTemp. Be aware in the beta1 this will be IElementContainer and support for ITableRow is dropped, Use TableRow instead.

HTH,
Jeroen