Interface ITable
An Oracle Table test object
public interface ITable : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
ColumnHeaders
The headers of the table's columns.
ReadOnlyCollection<string> ColumnHeaders { get; }
Property Value
ObjectName
Returns the name of the object supplied by the server.
string ObjectName { get; }
Property Value
Rows
The ITableRow objects that the table contains.
ReadOnlyCollection<ITableRow> Rows { get; }
Property Value
Methods
ActivateRow(int)
Activates a specified record.
void ActivateRow(int row)
Parameters
rowintThe 0-based number of the row to activate.
GetCell(int, string)
Returns a cell specified by row index and column header.
ITableCell GetCell(int row, string columnHeader)