iOSApp.TouchAndHold Method

Definition

Overloads

TouchAndHold(Func<AppQuery,AppQuery>)

Performs a continuous touch gesture on the matched element. If multiple elements are matched, the first one will be used.

TouchAndHold(String)

Performs a continuous touch gesture on the matched element. If multiple elements are matched, the first one will be used.

TouchAndHold(Func<AppQuery,AppQuery>)

Performs a continuous touch gesture on the matched element. If multiple elements are matched, the first one will be used.

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

Parameters

query
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the element.

Implements

Applies to

TouchAndHold(String)

Performs a continuous touch gesture on the matched element. If multiple elements are matched, the first one will be used.

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

Parameters

marked
String

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

Implements

Applies to