AndroidApp.WaitForElement 方法

定义

重载

WaitForElement(Func<AppQuery,AppQuery>, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

等待函数,它将重复查询应用,直到找到匹配的元素。 TimeoutException如果在时间限制内找不到任何元素,则引发 。

WaitForElement(Func<AppQuery,AppWebQuery>, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

等待函数,它将重复查询应用,直到找到匹配的元素。 TimeoutException如果在时间限制内找不到任何元素,则引发 。

WaitForElement(String, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

等待函数,它将重复查询应用,直到找到匹配的元素。 TimeoutException如果在时间限制内找不到任何元素,则引发 。

WaitForElement(Func<AppQuery,AppQuery>, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

等待函数,它将重复查询应用,直到找到匹配的元素。 TimeoutException如果在时间限制内找不到任何元素,则引发 。

public Xamarin.UITest.Queries.AppResult[] WaitForElement (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> query, string timeoutMessage = "Timed out waiting for element...", Nullable<TimeSpan> timeout = null, Nullable<TimeSpan> retryFrequency = null, Nullable<TimeSpan> postTimeout = null);
abstract member WaitForElement : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Xamarin.UITest.Queries.AppResult[]
override this.WaitForElement : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Xamarin.UITest.Queries.AppResult[]
Public Function WaitForElement (query As Func(Of AppQuery, AppQuery), Optional timeoutMessage As String = "Timed out waiting for element...", Optional timeout As Nullable(Of TimeSpan) = null, Optional retryFrequency As Nullable(Of TimeSpan) = null, Optional postTimeout As Nullable(Of TimeSpan) = null) As AppResult()

参数

query
Func<AppQuery,AppQuery>

Fluent API 用于指定 元素的入口点。

timeoutMessage
String

在 中使用的 TimeoutException消息。

timeout
Nullable<TimeSpan>

TimeSpan 失败之前等待的 。

retryFrequency
Nullable<TimeSpan>

TimeSpan 对应用的每次查询调用之间要等待的 。

postTimeout
Nullable<TimeSpan>

找到 元素后要等待的最后 TimeSpan 一个。

返回

AppResult[]

表示匹配视图对象的数组。

实现

适用于

WaitForElement(Func<AppQuery,AppWebQuery>, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

等待函数,它将重复查询应用,直到找到匹配的元素。 TimeoutException如果在时间限制内找不到任何元素,则引发 。

public Xamarin.UITest.Queries.AppWebResult[] WaitForElement (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppWebQuery> query, string timeoutMessage = "Timed out waiting for element...", Nullable<TimeSpan> timeout = null, Nullable<TimeSpan> retryFrequency = null, Nullable<TimeSpan> postTimeout = null);
abstract member WaitForElement : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Xamarin.UITest.Queries.AppWebResult[]
override this.WaitForElement : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Xamarin.UITest.Queries.AppWebResult[]
Public Function WaitForElement (query As Func(Of AppQuery, AppWebQuery), Optional timeoutMessage As String = "Timed out waiting for element...", Optional timeout As Nullable(Of TimeSpan) = null, Optional retryFrequency As Nullable(Of TimeSpan) = null, Optional postTimeout As Nullable(Of TimeSpan) = null) As AppWebResult()

参数

query
Func<AppQuery,AppWebQuery>

Fluent API 用于指定 元素的入口点。

timeoutMessage
String

在 中使用的 TimeoutException消息。

timeout
Nullable<TimeSpan>

TimeSpan 失败之前等待的 。

retryFrequency
Nullable<TimeSpan>

TimeSpan 对应用的每次查询调用之间要等待的 。

postTimeout
Nullable<TimeSpan>

找到 元素后要等待的最后 TimeSpan 一个。

返回

AppWebResult[]

表示匹配视图对象的数组。

实现

适用于

WaitForElement(String, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

等待函数,它将重复查询应用,直到找到匹配的元素。 TimeoutException如果在时间限制内找不到任何元素,则引发 。

public Xamarin.UITest.Queries.AppResult[] WaitForElement (string marked, string timeoutMessage = "Timed out waiting for element...", Nullable<TimeSpan> timeout = null, Nullable<TimeSpan> retryFrequency = null, Nullable<TimeSpan> postTimeout = null);
abstract member WaitForElement : string * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Xamarin.UITest.Queries.AppResult[]
override this.WaitForElement : string * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Xamarin.UITest.Queries.AppResult[]
Public Function WaitForElement (marked As String, Optional timeoutMessage As String = "Timed out waiting for element...", Optional timeout As Nullable(Of TimeSpan) = null, Optional retryFrequency As Nullable(Of TimeSpan) = null, Optional postTimeout As Nullable(Of TimeSpan) = null) As AppResult()

参数

marked
String

要匹配的标记选择器。 有关详细信息,请参阅Marked(String)

timeoutMessage
String

在 中使用的 TimeoutException消息。

timeout
Nullable<TimeSpan>

TimeSpan 失败之前等待的 。

retryFrequency
Nullable<TimeSpan>

TimeSpan 对应用的每次查询调用之间要等待的 。

postTimeout
Nullable<TimeSpan>

找到 元素后要等待的最后 TimeSpan 一个。

返回

AppResult[]

表示匹配视图对象的数组。

实现

适用于