IApp.EnterText Method

Definition

Overloads

EnterText(String)

Enters text into the currently focused element.

EnterText(Func<AppQuery,AppQuery>, String)

Enters text into a matching element that supports it.

EnterText(Func<AppQuery,AppWebQuery>, String)

Enters text into a matching element that supports it.

EnterText(String, String)

Enters text into a matching element that supports it.

EnterText(String)

Enters text into the currently focused element.

public void EnterText (string text);
abstract member EnterText : string -> unit
Public Sub EnterText (text As String)

Parameters

text
String

The text to enter.

Applies to

EnterText(Func<AppQuery,AppQuery>, String)

Enters text into a matching element that supports it.

public void EnterText (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> query, string text);
abstract member EnterText : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * string -> unit
Public Sub EnterText (query As Func(Of AppQuery, AppQuery), text As String)

Parameters

query
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the element.

text
String

The text to enter.

Applies to

EnterText(Func<AppQuery,AppWebQuery>, String)

Enters text into a matching element that supports it.

public void EnterText (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppWebQuery> query, string text);
abstract member EnterText : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * string -> unit
Public Sub EnterText (query As Func(Of AppQuery, AppWebQuery), text As String)

Parameters

query
Func<AppQuery,AppWebQuery>

Entry point for the fluent API to specify the element.

text
String

The text to enter.

Applies to

EnterText(String, String)

Enters text into a matching element that supports it.

public void EnterText (string marked, string text);
abstract member EnterText : string * string -> unit
Public Sub EnterText (marked As String, text As String)

Parameters

marked
String

Marked selector to match. See Marked(String) for more information.

text
String

The text to enter.

Applies to