Table of Contents

Interface ITable

Namespace
HP.LFT.SDK.Oracle
Assembly
HP.LFT.SDK.dll

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

ReadOnlyCollection<string>

ObjectName

Returns the name of the object supplied by the server.

string ObjectName { get; }

Property Value

string

Rows

The ITableRow objects that the table contains.

ReadOnlyCollection<ITableRow> Rows { get; }

Property Value

ReadOnlyCollection<ITableRow>

Methods

ActivateRow(int)

Activates a specified record.

void ActivateRow(int row)

Parameters

row int

The 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)

Parameters

row int

0-based row number.

columnHeader string

The column header.

Returns

ITableCell