Interface IListOfValues
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
Items
The content of the object window.
ReadOnlyCollection<string> Items { get; }
Property Value
Title
The window title.
string Title { get; }
Property Value
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
textstringThe value or prefix of the item to find.
Select(int)
Selects the specified item from the list.
void Select(int itemIndex)
Parameters
itemIndexintThe 0-based index of the item to select.
Select(string)
Selects the specified item from the list.
void Select(string item)
Parameters
itemstringThe item to select.