Table of Contents

Interface IListOfValues

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

An Oracle window containing a list of values for selection.

public interface IListOfValues : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITopLevelObject, ITestObject, ITestObjectDescriber
Inherited Members
Extension Methods

Properties

ClassPath

The Oracle class hierarchy of the object's Oracle class.

string ClassPath { get; }

Property Value

string

Items

The content of the object window.

ReadOnlyCollection<string> Items { get; }

Property Value

ReadOnlyCollection<string>

Title

The window title.

string Title { get; }

Property Value

string

Methods

Cancel()

Closes the List of Values window.

void Cancel()

Find(string)

Finds the item in the list that matches the specified value. OpenText Functional Testing for Developers searches in the first column of the list to locate the specified value. If only one item in the list matches the specified value, it is automatically selected. If more than one item in the list matches the specified value, all of the matching values are displayed.

void Find(string text)

Parameters

text string

The value or prefix of the item to find.

Select(int)

Selects the specified item from the list.

void Select(int itemIndex)

Parameters

itemIndex int

The 0-based index of the item to select.

Select(string)

Selects the specified item from the list.

void Select(string item)

Parameters

item string

The item to select.