iOSApp.TwoFingerTap Method

Definition

Overloads

TwoFingerTap(String)

Performs a tap / touch gestures with 2 fingers on the matched element. If multiple elements are matched, the first one will be used.

TwoFingerTap(Func<AppQuery,AppQuery>)

Performs a tap / touch gestures with 2 fingers on the matched element. If multiple elements are matched, the first one will be used.

TwoFingerTap(String)

Performs a tap / touch gestures with 2 fingers on the matched element. If multiple elements are matched, the first one will be used.

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

Parameters

marked
String

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

Applies to

TwoFingerTap(Func<AppQuery,AppQuery>)

Performs a tap / touch gestures with 2 fingers on the matched element. If multiple elements are matched, the first one will be used.

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

Parameters

query
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the element.

Applies to