Table of Contents

Interface ICheckBox

A check box Oracle field.

Namespace: HP.LFT.SDK.Oracle
Assembly: HP.LFT.SDK.dll
Syntax
public interface ICheckBox : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber

Properties

Caption

The caption of the object.

Declaration
string Caption { get; }
Property Value
Type Description
string

ClassPath

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

Declaration
string ClassPath { get; }
Property Value
Type Description
string

IsSelected

Indicates whether the check box is selected.

Declaration
bool IsSelected { get; }
Property Value
Type Description
bool

Label

The text displayed on the object.

Declaration
string Label { get; }
Property Value
Type Description
string

ObjectDescription

The accessibility description of the object, as specified by the server.

Declaration
string ObjectDescription { get; }
Property Value
Type Description
string

ObjectName

The internal name of the object, as supplied by the application server.

Declaration
string ObjectName { get; }
Property Value
Type Description
string

TooltipText

The text displayed in the object's tooltip.

Declaration
string TooltipText { get; }
Property Value
Type Description
string

Methods

Clear()

Clears (unchecks) the check box.

Declaration
void Clear()

Select()

Selects (checks) the check box.

Declaration
void Select()

SetFocus()

Transfers focus to the check box.

Declaration
void SetFocus()

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)
TestObjectExtensions.WaitUntilExists<T>(T)
TestObjectExtensions.WaitUntilExists<T>(T, int)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>, int)