AppPrintHelper.Query Method

Definition

Overloads

Query(Func<AppQuery,AppQuery>)

Prints the view elements matched by query to Console.

Query(Func<AppQuery,AppWebQuery>)

Prints the view elements matched by query to Console.

Query<T>(Func<AppQuery,AppTypedSelector<T>>)

Prints the properties matched by query to Console.

Query(Func<AppQuery,AppQuery>)

Prints the view elements matched by query to Console.

public void Query (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> query = null);
member this.Query : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> -> unit
Public Sub Query (Optional query As Func(Of AppQuery, AppQuery) = null)

Parameters

query
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the element. If left as null returns all visible view objects.

Applies to

Query(Func<AppQuery,AppWebQuery>)

Prints the view elements matched by query to Console.

public void Query (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppWebQuery> query);
member this.Query : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> -> unit
Public Sub Query (query As Func(Of AppQuery, AppWebQuery))

Parameters

query
Func<AppQuery,AppWebQuery>

Entry point for the fluent API to specify the element. If left as null returns all visible view objects.

Applies to

Query<T>(Func<AppQuery,AppTypedSelector<T>>)

Prints the properties matched by query to Console.

public void Query<T> (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppTypedSelector<T>> typedSelector);
member this.Query : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppTypedSelector<'T>> -> unit
Public Sub Query(Of T) (typedSelector As Func(Of AppQuery, AppTypedSelector(Of T)))

Type Parameters

T

Parameters

typedSelector
Func<AppQuery,AppTypedSelector<T>>

Entry point for the fluent API to specify the property.

Applies to