OracleNavigator Object

Description

An Oracle Navigator window.

Operations

The sections below list the built-in methods and properties that you can use as operations for the OracleNavigator object.

Note: You can also view a list and descriptions of the OracleNavigator description properties, for use in object repository descriptions, programmatic descriptions, checkpoint and output value steps, and as argument values for the GetTOProperty and GetROProperty methods.

Methods

Method ActivateActivates the form.
Common Method CaptureBitmapSaves a screen capture of the object as a .png or .bmp image using the specified file name.
Common Method CheckChecks whether the actual value of an item matches the expected value.
Common Method CheckPropertyChecks whether the actual value of the specified object property matches the specified expected value within the specified timeout.
Common Method ChildObjectsReturns the collection of child objects contained within the object.
Common Method GetAllROProperties

Returns the collection of properties and current values from the object in the application.

Method ClickClicks the specified location with the specified mouse button.
Method CloseFormCloses the form using the Exit softkey.
Method CloseWindowCloses the form using the X button in the form window title bar.
Method GetMenuItemPropertyGet MenuItem Property.
Method GetMenuSubItemsGet Menu SubItems separated by vbLf.
Common Method GetROPropertyReturns the current value of the description property from the object in the application.
Common Method GetTOPropertiesReturns the collection of properties and values used to identify the object.
Common Method GetTOPropertyReturns the value of the specified description property from the test object description.
Common Method HighlightHighlights the object in the application.
Method InvokeSoftkeyInvokes the specified Oracle softkey.
Common Method OutputRetrieves the current value of an item and stores it in a specified location.
Method PressToolbarButtonPresses a toolbar button.
Common Method RefreshObjectInstructs UFT One to re-identify the object in the application the next time a step refers to this object.
Method SavePerforms a Save operation using the Commit softkey.
Method SelectFunctionSelects the specified function in the Navigator window.
Method SelectMenuSelects a menu option.
Method SelectPopupMenuInvoke context menu and select the specified menu option.
Common Method SetTOPropertySets the value of the specified description property in the test object description.
Common Method ToStringReturns a string that represents the test object.
Common Method WaitPropertyWaits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step.

Properties

Common Property ExistChecks whether the object currently exists in the open application.

Back to top

 

Activate Method

Description

Activates the form.

Syntax

object.Activate

Return Type

None.

Example

Back to top

 

Click Method

Description

Clicks the specified location with the specified mouse button.

Syntax

object.Click ([x], [y], [BUTTON])

Arguments

ParameterDescription
x Optional. An integer value.
The x-coordinate of the click. Note that the specified coordinates are relative to the upper left corner of the object. 
Default = micNoCoordinate (center of the object).
Default value = -1
y Optional. An integer value.

The y-coordinate of the click. Note that the specified coordinates are relative to the upper left corner of the object.
Default = micNoCoordinate (center of the object).

Tip: You can enter micNoCoordinate for the x and y argument values if you want to enter a value for the button argument without specifying x- and y- coordinates for the click. micNoCoordinate indicates the center of the object.


Default value = -1
BUTTON Optional. A predefined constant or number.
The mouse button used to click the object.
Default value = micLeftBtn

Return Type

None.

Example

Back to top

 

CloseForm Method

Description

Closes the form using the Exit softkey.

Syntax

object.CloseForm

Return Type

None.

Example

Back to top

 

CloseWindow Method

Description

Closes the form using the X button in the form window title bar.

Syntax

object.CloseWindow

Return Type

None.

Example

Back to top

 

GetMenuItemProperty Method

Description

Get MenuItem Property.

Syntax

object.GetMenuItemProperty (MenuPath, PropertyName)

Arguments

ParameterDescription
MenuPath Required. A String value.
PropertyName Required. A String value.

Return Type

A Boolean value.

Back to top

 

GetMenuSubItems Method

Description

Get Menu SubItems separated by vbLf.

Syntax

object.GetMenuSubItems (MenuPath)

Arguments

ParameterDescription
MenuPath Required. A String value.

Return Type

A String value.

Back to top

 

InvokeSoftkey Method

Description

Invokes the specified Oracle softkey.

Syntax

object.InvokeSoftkey (Softkey)

Arguments

ParameterDescription
Softkey Required. A String value.

The softkey function to perform. You can view the functions available in a specific form by pressing Ctrl+K in an Oracle Applications session. Softkey functions are not case sensitive.

The following functions can be specified:

NEXT FIELDCLEAR RECORDDISPLAY ERROR
PREVIOUS FIELDDELETE RECORDPRINT
CLEAR FIELDDUPLICATE RECORDCOUNT QUERY
UPINSERT RECORDUPDATE RECORD
DOWNNEXT SET OF RECORDSFUNCTION 0 
SCROLL UPNEXT RECORDFUNCTION 1 
SCROLL DOWNPREVIOUS RECORDFUNCTION 2 
EDITCLEAR BLOCKFUNCTION 3 
RETURNBLOCK MENUFUNCTION 4 
LIST OF VALUESNEXT BLOCKFUNCTION 5 
HELPPREVIOUS BLOCKFUNCTION 6 
EXITDUPLICATE FIELDFUNCTION 7 
SHOW KEYSCLEAR FORMFUNCTION 8 
COMMITENTER QUERYFUNCTION 9
NEXT PRIMARY KEYEXECUTE QUERYLIST TAB PAGES

Return Type

None.

Example

Back to top

 

PressToolbarButton Method

Description

Presses a toolbar button.

Syntax

object.PressToolbarButton (ButtonName)

Arguments

ParameterDescription
ButtonName Required. A String value.

Return Type

None.

Back to top

 

Save Method

Description

Performs a Save operation using the Commit softkey.

Syntax

object.Save

Return Type

None.

IMPORTANT

This method performs a Ctrl+S operation (it does not save the Navigator window using the File > Save menu).

Note: This method is not recorded. To add this method to your test, use the Step Generator or enter it manually in the Keyword View or Editor. For more information, refer to the UFT One User Guide.

Example

Back to top

 

SelectFunction Method

Description

Selects the specified function in the Navigator window.

Syntax

object.SelectFunction (FunctionPath)

Arguments

ParameterDescription
FunctionPath Required. A String value.
The path of the function to select. You must specify the full path to the function, using a colon (:) as the separator to indicate the path hierarchy. For example, you would specify the Merge Parties function as follows: "Data Quality Management:Merge Parties".

Return Type

None.

Example

Back to top

 

SelectMenu Method

Description

Selects a menu option.

Syntax

object.SelectMenu (Item)

Arguments

ParameterDescription
Item Required. A String value.
The name of the menu item. You must specify the full path to the menu item, using -> as the separator between menu options. For example, you would specify the Switch Responsibility menu option as follows: "File->Switch Responsibility...".

Return Type

None.

Example

Back to top

 

SelectPopupMenu Method

Description

Invoke context menu and select the specified menu option.

Syntax

object.SelectPopupMenu (Path)

Arguments

ParameterDescription
Path Required. A String value.
The path of the menu to open.

Return Type

None.

Example

Back to top

See also: