Interface INavigationBar
An SAPUI5 navigation bar object.
public interface INavigationBar : IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop
- Inherited Members
- Extension Methods
Properties
Items
Returns all the items in the navigationbar.
ReadOnlyCollection<INavigationBarItem> Items { get; }
Property Value
SelectedItem
Returns the selected item in the navigationbar or null if none.
INavigationBarItem SelectedItem { get; }
Property Value
Methods
GetItem(string)
Returns a specified item from the navigation bar.
INavigationBarItem GetItem(string itemText)
Parameters
itemTextstringthe text of the item to get.
Returns
- INavigationBarItem
The specified item from the navigation bar.
OpenMenu()
Opens the popup menu to show hidden navigation items.
void OpenMenu()
Select(INavigationBarItem)
Selects the specified item in the navigation bar.
void Select(INavigationBarItem item)
Parameters
itemINavigationBarItemthe item to select.
Select(string)
Selects the specified item (by name) in the navigation bar.
void Select(string itemText)
Parameters
itemTextstringtext of the item to select.