Interface IAccordion
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
SelectedItem
The title of the selected panel.
string SelectedItem { get; }
Property Value
Methods
Collapse(string)
Collapses the specified panel in the accordion.
void Collapse(string item)
Parameters
itemstringThe name of the panel to collapse.
Collapse(uint)
Collapses the specified panel in the accordion.
void Collapse(uint itemIndex)
Parameters
itemIndexuintThe 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
itemstringThe name of the panel to expand.
Expand(uint)
Expands the specified panel in the accordion.
void Expand(uint itemIndex)
Parameters
itemIndexuintThe numeric index of the panel to expand. Index begins with 1.