Package com.hp.lft.sdk.oracle
Interface UiFormBase
- All Superinterfaces:
- Clickable,- LocationInfoProvider,- UiObjectBase
- All Known Subinterfaces:
- FormWindow
Base interface of all Oracle windows test objects.
- 
Method SummaryModifier and TypeMethodDescriptionvoidactivate()Activates the form.buildMenuPath(String... menuPathParts) Returns the path constructed from the path parts.voidCloses the form using the Exit softkeyvoidCloses the form using the X button in the form window title bar.Returns the item at the specified path.getTitle()Returns the window title.voidpressToolbarButton(String buttonName) Presses a toolbar button.voidsave()Performs a Save operation using the Commit softkey.voidselectMenuItem(MenuItem item) Selects a menu option.voidselectMenuItem(String itemPath) Selects a menu option.Methods inherited from interface com.hp.lft.sdk.LocationInfoProvidergetAbsoluteLocation, getLocation, getSizeMethods inherited from interface com.hp.lft.sdk.oracle.UiObjectBasegetObjectType, selectFromPopupMenu, selectFromPopupMenu, sendKey
- 
Method Details- 
getTitleReturns the window title.- Returns:
- the general object type.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
activateActivates the form.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
closeFormCloses the form using the Exit softkey- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
closeWindowCloses the form using the X button in the form window title bar.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
pressToolbarButtonPresses a toolbar button.- Parameters:
- buttonName- The button name.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
savePerforms a Save operation using the Commit softkey.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
buildMenuPathReturns the path constructed from the path parts.- Parameters:
- menuPathParts- the menu path parts can be: full path(string). For a full path, separate items by- ->string.
- Returns:
- the path constructed from the path parts.
 
- 
selectMenuItemSelects a menu option. You can usegetItem(String)to get the item to use as the item argument.- Parameters:
- item- item to select
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectMenuItemSelects a menu option. You can usebuildMenuPath(String...)to build the itemPath argument.- Parameters:
- itemPath- the path of the item to select.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getItemReturns the item at the specified path.- Parameters:
- itemPath- the full path of the menu item to select from the list. The path is composed of the menu item names separated by a- ->.
- Returns:
- MenuItem representing the menu item.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-