AppQuery Constructors

Definition

Overloads

AppQuery(QueryPlatform)

Initial constructor for queries. Should not be called directly, but used as part of the fluent API in the app classes.

AppQuery(AppQuery, Object[])

Constructor for adding more tokens to an existing query in an immutable fashion. Takes the tokens from the old query plus the additional tokens.

AppQuery(QueryPlatform)

Initial constructor for queries. Should not be called directly, but used as part of the fluent API in the app classes.

public AppQuery (Xamarin.UITest.Queries.QueryPlatform queryPlatform);
new Xamarin.UITest.Queries.AppQuery : Xamarin.UITest.Queries.QueryPlatform -> Xamarin.UITest.Queries.AppQuery

Parameters

queryPlatform
QueryPlatform

The query target platform.

Applies to

AppQuery(AppQuery, Object[])

Constructor for adding more tokens to an existing query in an immutable fashion. Takes the tokens from the old query plus the additional tokens.

public AppQuery (Xamarin.UITest.Queries.AppQuery appQuery, params object[] tokens);
new Xamarin.UITest.Queries.AppQuery : Xamarin.UITest.Queries.AppQuery * obj[] -> Xamarin.UITest.Queries.AppQuery

Parameters

appQuery
AppQuery

The existing query.

tokens
Object[]

The new query tokens.

Applies to