Table of Contents

Interface ITabStrip

Namespace
HP.LFT.SDK.SAP.UI5
Assembly
HP.LFT.SDK.dll

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

string

Tabs

The list of all tabs contained in the tabstrip object.

ReadOnlyCollection<string> Tabs { get; }

Property Value

ReadOnlyCollection<string>

Methods

Deselect(string)

Deselects the specified tab from the tabstrip object.

void Deselect(string tab)

Parameters

tab string

The tab to deselect.

Deselect(uint)

Deselects the specified tab (by index) from the tabstrip object.

void Deselect(uint tabIndex)

Parameters

tabIndex uint

The tab index to deselect (1-based).

Remove(string)

Removes the specified tab from the tabstrip object.

void Remove(string tab)

Parameters

tab string

The tab to remove.

Remove(uint)

Removes the specified tab (by index) from the tabstrip object.

void Remove(uint tabIndex)

Parameters

tabIndex uint

The tab index to remove (1-based).

Select(string)

Selects the specified tab in the tabstrip object.

void Select(string tab)

Parameters

tab string

The tab to select.

Select(uint)

Selects the specified tab (by index) in the tabstrip object.

void Select(uint tabIndex)

Parameters

tabIndex uint

The tab index to select (1-based).