Table of Contents

Interface IAccordion

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

An SAPUI5 accordion object.

public interface IAccordion : IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop
Inherited Members
Extension Methods

Properties

Items

A list of the titles of all the panels contained in the accordion (separated by ;).

ReadOnlyCollection<string> Items { get; }

Property Value

ReadOnlyCollection<string>

SelectedItem

The title of the selected panel.

string SelectedItem { get; }

Property Value

string

Methods

Collapse(string)

Collapses the specified panel in the accordion.

void Collapse(string item)

Parameters

item string

The name of the panel to collapse.

Collapse(uint)

Collapses the specified panel in the accordion.

void Collapse(uint itemIndex)

Parameters

itemIndex uint

The numeric index of the panel to collapse. Index begins with 1.

Expand(string)

Expands the specified panel in the accordion.

void Expand(string item)

Parameters

item string

The name of the panel to expand.

Expand(uint)

Expands the specified panel in the accordion.

void Expand(uint itemIndex)

Parameters

itemIndex uint

The numeric index of the panel to expand. Index begins with 1.