Table of Contents

Interface IComboboxComponent

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

Provides the functionalities of the automation of a combobox component.

[AbstractionComponent("combobox")]
public interface IComboboxComponent : IFormFieldComponent, IAutomationComponent, IInputComponent, IValidationComponent, IFocusableComponent, IActivableComponent
Inherited Members

Methods

GetDropDownValues()

Gets the dropdown display values.

IEnumerable<string> GetDropDownValues()

Returns

IEnumerable<string>

The combobox current display values (in the order in which they are displayed).

Exceptions

AutomationException

The combobox dropdown cannot be opened or the dropdown element cannot be found.

GetValue()

Gets the combobox current display value .

string? GetValue()

Returns

string

The combobox current value.

SetValue(string?)

Set the combobox value.

void SetValue(string? value)

Parameters

value string

The new combobox value.

Exceptions

AutomationException

The combobox value cannot be changed.

SetValueUsingKeyboard(string?)

Set the combobox value.

void SetValueUsingKeyboard(string? value)

Parameters

value string

The new combobox value.

Exceptions

AutomationException

The combobox value cannot be changed.