iOSApp.DoubleTap Method

Definition

Overloads

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.

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

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