Interface ITabStrip
An SAPUI5 tabstrip object.
public interface ITabStrip : IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop, IEnabledProvider
- Inherited Members
- Extension Methods
Properties
SelectedTab
The selected tab in the tabstrip object.
string SelectedTab { get; }
Property Value
Tabs
The list of all tabs contained in the tabstrip object.
ReadOnlyCollection<string> Tabs { get; }
Property Value
Methods
Deselect(string)
Deselects the specified tab from the tabstrip object.
void Deselect(string tab)
Parameters
tabstringThe tab to deselect.
Deselect(uint)
Deselects the specified tab (by index) from the tabstrip object.
void Deselect(uint tabIndex)
Parameters
tabIndexuintThe tab index to deselect (1-based).
Remove(string)
Removes the specified tab from the tabstrip object.
void Remove(string tab)
Parameters
tabstringThe tab to remove.
Remove(uint)
Removes the specified tab (by index) from the tabstrip object.
void Remove(uint tabIndex)
Parameters
tabIndexuintThe tab index to remove (1-based).
Select(string)
Selects the specified tab in the tabstrip object.
void Select(string tab)
Parameters
tabstringThe tab to select.
Select(uint)
Selects the specified tab (by index) in the tabstrip object.
void Select(uint tabIndex)
Parameters
tabIndexuintThe tab index to select (1-based).