Table of Contents

Interface ICodeEditorComponent

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

Provides the functionalities of the automation of a combobox component.

[AbstractionComponent("code-editor")]
public interface ICodeEditorComponent : IAutomationComponent
Inherited Members

Properties

IsReadOnly

Gets a value indicating whether the code-editor is in read only mode.

bool IsReadOnly { get; }

Property Value

bool

IsReady

Gets a value indicating whether the code-editor is ready.

bool IsReady { get; }

Property Value

bool

Methods

GetValue()

Gets the code-editor current value.

string? GetValue()

Returns

string

The code-editor current value.

SetValue(string?)

Set the code-editor value.

void SetValue(string? value)

Parameters

value string

The new code-editor value.

Exceptions

AutomationException

The code-editor value cannot be changed.

WaitUntilReady()

Waits until the code-editor is ready.

void WaitUntilReady()