IUiObjectBase Interface

The base interface for all Oracle test objects.

C# Syntax

public interface IUiObjectBase : HP.LFT.SDK.IClickable, HP.LFT.SDK.ILocationInfoProvider  

Public Properties

 NameDescription
PropertyAbsoluteLocationThis object's coordinates relative to the screen (in pixels). 0,0 is the top-left corner of the (primary) monitor. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
PropertyLocationThis object's coordinates relative to the parent window in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
PropertyObjectType

The general object type.

C# Syntax

string ObjectType {get;}
PropertySizeThis object's size in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
Top

Public Methods

 NameDescription
MethodClickClicks on this object. (Inherited from HP.LFT.SDK.IClickable)
MethodSelectFromPopupMenu (string[])

Opens the context menu and selects the specified menu option.

C# Syntax

 void SelectFromPopupMenu( 
   string[] menuPathParts
)

Parameters

menuPathParts The parts that make up the path of the context menu item to select. Each part can be a name of a menu item or a full path of items separated by "->"
MethodSelectFromPopupMenu (string)

Opens the context menu and selects the specified menu option.

C# Syntax

void SelectFromPopupMenu( 
   string path
)

Parameters

path The path of the context menu item to select. The path should be a single string of menu item names separated by "->"​​.
MethodSendKey

Invokes the specified Oracle softkey.

C# Syntax

void SendKey( 
   SoftKeys key
)

Parameters

key The softkey function to perform.
Top