Table of Contents

Interface IMessageBoxComponent

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

Provides the functionalities of a message box component for automation.

public interface IMessageBoxComponent : IMessageBoxComponentBase, IModalComponent, IAutomationComponent
Inherited Members

Properties

CancelButton

Gets the Cancel button component.

IButtonComponent? CancelButton { get; }

Property Value

IButtonComponent

NoButton

Gets the No button component.

IButtonComponent? NoButton { get; }

Property Value

IButtonComponent

YesButton

Gets the Yes button component.

IButtonComponent? YesButton { get; }

Property Value

IButtonComponent

Methods

FindButtonById(int)

Find the custom button with a specific id.

IButtonComponent? FindButtonById(int id)

Parameters

id int

The id of the button.

Returns

IButtonComponent

The custom button or null if not found.

GetButtonById(int)

Gets the custom button with a specific id.

IButtonComponent GetButtonById(int id)

Parameters

id int

The id of the button.

Returns

IButtonComponent

The custom button.

Exceptions

AutomationException

No component was found.