AndroidApp.DoubleTap Method

Definition

Overloads

DoubleTap(Func<AppQuery,AppQuery>)

Performs two quick tap / touch gestures on the matched element. If multiple elements are matched, the first one will be used.

DoubleTap(Func<AppQuery,AppWebQuery>)

Performs two quick tap / touch gestures on the matched element. If multiple elements are matched, the first one will be used. This version is specifically for queries on web views

DoubleTap(String)

Performs two quick tap / touch gestures on the matched element. If multiple elements are matched, the first one will be used.

DoubleTap(Func<AppQuery,AppQuery>)

Performs two quick tap / touch gestures on the matched element. If multiple elements are matched, the first one will be used.

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

Parameters

query
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the element.

Implements

Applies to

DoubleTap(Func<AppQuery,AppWebQuery>)

Performs two quick tap / touch gestures on the matched element. If multiple elements are matched, the first one will be used. This version is specifically for queries on web views

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

Parameters

query
Func<AppQuery,AppWebQuery>

Entry point for the fluent API to specify the element.

Applies to

DoubleTap(String)

Performs two quick tap / touch gestures on the matched element. If multiple elements are matched, the first one will be used.

public void DoubleTap (string marked);
abstract member DoubleTap : string -> unit
override this.DoubleTap : string -> unit
Public Sub DoubleTap (marked As String)

Parameters

marked
String

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

Implements

Applies to