Table of Contents

Interface IGroupBoxComponent

Namespace
GroupeIsa.Neos.EndToEndTests.UI.Components
Assembly
GroupeIsa.Neos.EndToEndTests.UI.dll

Provides the functionalities of a group box component.

[AbstractionComponent("group-box")]
public interface IGroupBoxComponent : IAutomationComponent
Inherited Members

Properties

IsExpandable

Gets a value indicating whether the groupbox is expandable.

bool IsExpandable { get; }

Property Value

bool

IsExpanded

Gets a value indicating whether the groupbox is expanded.

bool IsExpanded { get; }

Property Value

bool

Methods

GetContent()

Gets the content of the group box.

IContentComponent GetContent()

Returns

IContentComponent

The content of the group box.

GetHeader()

Gets the header of the group box.

IContentComponent GetHeader()

Returns

IContentComponent

The header of the group box.

ToggleExpand()

Click on the expand button of the groupbox.

bool ToggleExpand()

Returns

bool

The new value of IsExpanded property.

Exceptions

AutomationException

Group box is not expandable.