Skip to content
Yngve Bakken Nilsen edited this page Sep 19, 2013 · 12 revisions

A WebElement representing a Tablerow

HTML Representation(s)

  • <TR />

Properties

IList<TD> TableCells

Returns a list of TableCells (<TD />) that are descendants of the current element.

Note All descendants will be returned from this property, so if you have a nested table, its TableCells will also be contained in the list

IList<TD> OwnTableCells

Returns the TableCells that are immediate children of the current element

int Index

Returns the index of the TableRow within a TableRowCollection

Methods

TD OwnTableCell(By constraint)

Returns a specific TableCell that matches the specified By constraint.