Partager via


iOSApp.ScrollDownTo Méthode

Définition

Surcharges

ScrollDownTo(Func<AppQuery,AppQuery>, Func<AppQuery,AppQuery>, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toQuery s’affiche à l’écran.

ScrollDownTo(Func<AppQuery,AppWebQuery>, Func<AppQuery,AppQuery>, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toQuery s’affiche à l’écran.

ScrollDownTo(Func<AppQuery,AppWebQuery>, String, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toMarked s’affiche à l’écran.

ScrollDownTo(String, String, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toMarked s’affiche à l’écran.

ScrollDownTo(Func<AppQuery,AppQuery>, Func<AppQuery,AppQuery>, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toQuery s’affiche à l’écran.

public void ScrollDownTo (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> toQuery, Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> withinQuery = null, Xamarin.UITest.ScrollStrategy strategy = Xamarin.UITest.ScrollStrategy.Auto, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true, Nullable<TimeSpan> timeout = null);
abstract member ScrollDownTo : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
override this.ScrollDownTo : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
Public Sub ScrollDownTo (toQuery As Func(Of AppQuery, AppQuery), Optional withinQuery As Func(Of AppQuery, AppQuery) = null, Optional strategy As ScrollStrategy = Xamarin.UITest.ScrollStrategy.Auto, Optional swipePercentage As Double = 0.67, Optional swipeSpeed As Integer = 500, Optional withInertia As Boolean = true, Optional timeout As Nullable(Of TimeSpan) = null)

Paramètres

toQuery
Func<AppQuery,AppQuery>

Point d’entrée de l’API Fluent pour spécifier l’élément à afficher à l’écran.

withinQuery
Func<AppQuery,AppQuery>

Point d’entrée de l’API Fluent pour spécifier l’élément dans lequel faire défiler.

strategy
ScrollStrategy

Stratégie pour l’élément de défilement.

swipePercentage
Double

Distance entre l’élément à balayer (de 0,0 à 1.0). Ignoré pour le défilement par programmation.

swipeSpeed
Int32

Vitesse du mouvement. Ignoré pour le défilement par programmation.

withInertia
Boolean

Indique si les balayages doivent provoquer une inertie. Ignoré pour le défilement par programmation.

timeout
Nullable<TimeSpan>

TimeSpan à attendre avant d’échouer.

Implémente

S’applique à

ScrollDownTo(Func<AppQuery,AppWebQuery>, Func<AppQuery,AppQuery>, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toQuery s’affiche à l’écran.

public void ScrollDownTo (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppWebQuery> toQuery, Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> withinQuery = null, Xamarin.UITest.ScrollStrategy strategy = Xamarin.UITest.ScrollStrategy.Auto, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true, Nullable<TimeSpan> timeout = null);
abstract member ScrollDownTo : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
override this.ScrollDownTo : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
Public Sub ScrollDownTo (toQuery As Func(Of AppQuery, AppWebQuery), Optional withinQuery As Func(Of AppQuery, AppQuery) = null, Optional strategy As ScrollStrategy = Xamarin.UITest.ScrollStrategy.Auto, Optional swipePercentage As Double = 0.67, Optional swipeSpeed As Integer = 500, Optional withInertia As Boolean = true, Optional timeout As Nullable(Of TimeSpan) = null)

Paramètres

toQuery
Func<AppQuery,AppWebQuery>

Point d’entrée de l’API Fluent pour spécifier l’élément à afficher à l’écran.

withinQuery
Func<AppQuery,AppQuery>

Point d’entrée de l’API Fluent pour spécifier l’élément dans lequel faire défiler.

strategy
ScrollStrategy

Stratégie pour l’élément de défilement.

swipePercentage
Double

Distance entre l’élément à balayer (de 0,0 à 1.0). Ignoré pour le défilement par programmation.

swipeSpeed
Int32

Vitesse du mouvement. Ignoré pour le défilement par programmation.

withInertia
Boolean

Indique si les balayages doivent provoquer une inertie. Ignoré pour le défilement par programmation.

timeout
Nullable<TimeSpan>

TimeSpan à attendre avant d’échouer.

Implémente

S’applique à

ScrollDownTo(Func<AppQuery,AppWebQuery>, String, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toMarked s’affiche à l’écran.

public void ScrollDownTo (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppWebQuery> toQuery, string withinMarked, Xamarin.UITest.ScrollStrategy strategy = Xamarin.UITest.ScrollStrategy.Auto, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true, Nullable<TimeSpan> timeout = null);
abstract member ScrollDownTo : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * string * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
override this.ScrollDownTo : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * string * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
Public Sub ScrollDownTo (toQuery As Func(Of AppQuery, AppWebQuery), withinMarked As String, Optional strategy As ScrollStrategy = Xamarin.UITest.ScrollStrategy.Auto, Optional swipePercentage As Double = 0.67, Optional swipeSpeed As Integer = 500, Optional withInertia As Boolean = true, Optional timeout As Nullable(Of TimeSpan) = null)

Paramètres

toQuery
Func<AppQuery,AppWebQuery>

Point d’entrée de l’API Fluent pour spécifier l’élément à afficher à l’écran.

withinMarked
String

Sélecteur marqué pour sélectionner l’élément à faire défiler. Consultez la rubrique Marked(String) (éventuellement en anglais) pour plus d'informations.

strategy
ScrollStrategy

Stratégie pour l’élément de défilement.

swipePercentage
Double

Distance entre l’élément à balayer (de 0,0 à 1.0). Ignoré pour le défilement par programmation.

swipeSpeed
Int32

Vitesse du mouvement. Ignoré pour le défilement par programmation.

withInertia
Boolean

Indique si les balayages doivent provoquer une inertie. Ignoré pour le défilement par programmation.

timeout
Nullable<TimeSpan>

TimeSpan à attendre avant d’échouer.

Implémente

S’applique à

ScrollDownTo(String, String, ScrollStrategy, Double, Int32, Boolean, Nullable<TimeSpan>)

Faites défiler jusqu’à ce qu’un élément correspondant à toMarked s’affiche à l’écran.

public void ScrollDownTo (string toMarked, string withinMarked = null, Xamarin.UITest.ScrollStrategy strategy = Xamarin.UITest.ScrollStrategy.Auto, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true, Nullable<TimeSpan> timeout = null);
abstract member ScrollDownTo : string * string * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
override this.ScrollDownTo : string * string * Xamarin.UITest.ScrollStrategy * double * int * bool * Nullable<TimeSpan> -> unit
Public Sub ScrollDownTo (toMarked As String, Optional withinMarked As String = null, Optional strategy As ScrollStrategy = Xamarin.UITest.ScrollStrategy.Auto, Optional swipePercentage As Double = 0.67, Optional swipeSpeed As Integer = 500, Optional withInertia As Boolean = true, Optional timeout As Nullable(Of TimeSpan) = null)

Paramètres

toMarked
String

Sélecteur marqué pour sélectionner l’élément à afficher à l’écran. Consultez la rubrique Marked(String) (éventuellement en anglais) pour plus d'informations.

withinMarked
String

Sélecteur marqué pour sélectionner l’élément à faire défiler. Consultez la rubrique Marked(String) (éventuellement en anglais) pour plus d'informations.

strategy
ScrollStrategy

Stratégie pour l’élément de défilement.

swipePercentage
Double

Distance entre l’élément à balayer (de 0,0 à 1.0). Ignoré pour le défilement par programmation.

swipeSpeed
Int32

Vitesse du mouvement. Ignoré pour le défilement par programmation.

withInertia
Boolean

Indique si les balayages doivent provoquer une inertie. Ignoré pour le défilement par programmation.

timeout
Nullable<TimeSpan>

TimeSpan à attendre avant d’échouer.

Implémente

S’applique à