Enter
Instructs the Actor to
enter a value into a form input
field.
Extends:
Examples:
<form>
<input type="text" name="example" id="example" />
</form>
import { Target } from '@serenity-js/protractor';
import { by } from 'protractor';
class Form {
static exampleInput = Target.the('example input')
.located(by.id('example'));
}
import { actorCalled } from '@serenity-js/core';
import { BrowseTheWeb, Enter } from '@serenity-js/webdriverio';
actorCalled('Esme')
.whoCan(BrowseTheWeb.using(browser))
.attemptsTo(
Enter.theValue('Hello world!').into(Form.exampleInput),
);
Tests:
See also:
Static Method Summary
Static Public Methods | ||
public static |
theValue(value: Answerable<string|number>): EnterBuilder Instantiates this Interaction. |
Constructor Summary
Public Constructor | ||
public |
constructor(value: Answerable<string|number>, field: Question<ElementFinder> | ElementFinder | Question<AlertPromise> | AlertPromise) |
Method Summary
Public Methods | ||
public |
performAs(actor: UsesAbilities & AnswersQuestions): PromiseLike<void> Makes the provided Actor perform this Interaction. |
|
public |
toString(): string Generates a description to be used when reporting this Activity. |
Static Public Methods
public static theValue(value: Answerable<string|number>): EnterBuilder source
Instantiates this Interaction.
Params:
Name | Type | Attribute | Description |
value | Answerable<string|number> | The value to be entered |
Public Constructors
public constructor(value: Answerable<string|number>, field: Question<ElementFinder> | ElementFinder | Question<AlertPromise> | AlertPromise) source
Params:
Name | Type | Attribute | Description |
value | Answerable<string|number> | The value to be entered |
|
field | Question<ElementFinder> | ElementFinder | Question<AlertPromise> | AlertPromise | The field to enter the value into |
Public Methods
public performAs(actor: UsesAbilities & AnswersQuestions): PromiseLike<void> source
Makes the provided Actor perform this Interaction.
Params:
Name | Type | Attribute | Description |
actor | UsesAbilities & AnswersQuestions | An Actor to perform this Interaction |
Returns:
PromiseLike<void> |