iOSApp.DragAndDrop Method

Definition

Overloads

DragAndDrop(Func<AppQuery,AppQuery>, Func<AppQuery,AppQuery>)

Drags the from element to the to element.

DragAndDrop(String, String)

Drags the from element to the to element.

DragAndDrop(Func<AppQuery,AppQuery>, Func<AppQuery,AppQuery>, Nullable<TimeSpan>, Nullable<TimeSpan>)

Drags the from element to the to element.

DragAndDrop(Func<AppQuery,AppQuery>, Func<AppQuery,AppQuery>)

Drags the from element to the to element.

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

Parameters

from
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the from element.

to
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the to element.

Implements

Applies to

DragAndDrop(String, String)

Drags the from element to the to element.

public void DragAndDrop (string from, string to);
abstract member DragAndDrop : string * string -> unit
override this.DragAndDrop : string * string -> unit
Public Sub DragAndDrop (from As String, to As String)

Parameters

from
String

Marked selector of the from element.

to
String

Marked selector of the to element.

Implements

Applies to

DragAndDrop(Func<AppQuery,AppQuery>, Func<AppQuery,AppQuery>, Nullable<TimeSpan>, Nullable<TimeSpan>)

Drags the from element to the to element.

public void DragAndDrop (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> from, Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> to, Nullable<TimeSpan> duration = null, Nullable<TimeSpan> holdTime = null);
member this.DragAndDrop : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Nullable<TimeSpan> * Nullable<TimeSpan> -> unit
Public Sub DragAndDrop (from As Func(Of AppQuery, AppQuery), to As Func(Of AppQuery, AppQuery), Optional duration As Nullable(Of TimeSpan) = null, Optional holdTime As Nullable(Of TimeSpan) = null)

Parameters

from
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the from element.

to
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the to element.

duration
Nullable<TimeSpan>

The TimeSpan duration of the pan gesture not including the hold time.

holdTime
Nullable<TimeSpan>

The TimeSpan duration to hold the initial press before starting the pan gesture.

Applies to