IApp.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>)

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
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.

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
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.

Applies to