Package com.hp.lft.sdk.sap.ui5
Interface Menubar
- All Superinterfaces:
Clickable
,EnabledProvider
,LocationInfoProvider
,SupportDragAndDrop
,SupportsNativeObject
,TestObject
,TestObjectDescriber
,VisibleProvider
,WaitUntilEnabledProvider
,WaitUntilVisibleProvider
,WebElement
,WebTestObject
,WebTestObjectDescriber
An SAPUI5 menu bar object.
-
Method Summary
Modifier and TypeMethodDescriptionReturns an item from the menu bar.getItems()
Returns all of the items in the menu bar.void
select
(int itemIndex) Selects the specified menu bar item by index.void
select
(MenubarItem item) Selects the specified menu bar item fromMenubarItem
.void
Selects the specified menu bar item by name.Methods inherited from interface com.hp.lft.sdk.EnabledProvider
isEnabled
Methods inherited from interface com.hp.lft.sdk.LocationInfoProvider
getAbsoluteLocation, getLocation, getSize
Methods inherited from interface com.hp.lft.sdk.SupportDragAndDrop
dragAndDropOn, dragAndDropOn
Methods inherited from interface com.hp.lft.sdk.SupportsNativeObject
getNativeObject
Methods inherited from interface com.hp.lft.sdk.TestObject
callFTMethod, callFTMethod, exists, exists, findChildren, getDescription, getDisplayName, getParent, getSnapshot, getTextLocations, getTextLocations, getVisibleText, getVisibleText, highlight, highlightMatches, setDescription, setDisplayName, verifyImageExists, verifyImageExists, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, waitUntilExists, waitUntilExists
Methods inherited from interface com.hp.lft.sdk.TestObjectDescriber
describe
Methods inherited from interface com.hp.lft.sdk.WaitUntilEnabledProvider
waitUntilEnabled, waitUntilEnabled
Methods inherited from interface com.hp.lft.sdk.WaitUntilVisibleProvider
waitUntilVisible, waitUntilVisible
Methods inherited from interface com.hp.lft.sdk.web.WebElement
doubleClick, doubleClick, fireEvent, getAccessibilityName, getCSSSelector, getRole, getXPath, hoverTap, hoverTap, longPress, longPress, pan, pan, pinch, pinch, swipe, swipe
Methods inherited from interface com.hp.lft.sdk.web.WebTestObject
getAttribute, getAttributes, getClassName, getComputedStyle, getComputedStyles, getId, getInnerHTML, getInnerText, getName, getOuterHTML, getOuterText, getTagName, getTitle, isVisible
Methods inherited from interface com.hp.lft.sdk.web.WebTestObjectDescriber
describe, describe
-
Method Details
-
getItems
Returns all of the items in the menu bar.- Returns:
- All of the items in the menu bar.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getItem
Returns an item from the menu bar.- Parameters:
itemText
- text of the item to get.- Returns:
- an item from the menu bar.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
select
Selects the specified menu bar item by name.- Parameters:
itemText
- text of the item to select.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
select
Selects the specified menu bar item by index.- Parameters:
itemIndex
- index of the item to select (1-based).- Throws:
GeneralLeanFtException
- if error occurs during execution
-
select
Selects the specified menu bar item fromMenubarItem
.- Parameters:
item
- the item to select fromMenubarItem
.- Throws:
GeneralLeanFtException
- if error occurs during execution
-