iOSApp.Flash Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Flash(String) |
Highlights the results of the query by making them flash. Specify view elements using marked string. |
Flash(Func<AppQuery,AppQuery>) |
Highlights the results of the query by making them flash. Specify view elements using the fluent API. Defaults to all view objects that are visible. |
Flash(String)
Highlights the results of the query by making them flash. Specify view elements using marked string.
public Xamarin.UITest.Queries.AppResult[] Flash (string marked);
abstract member Flash : string -> Xamarin.UITest.Queries.AppResult[]
override this.Flash : string -> Xamarin.UITest.Queries.AppResult[]
Public Function Flash (marked As String) As AppResult()
Parameters
- marked
- String
Marked selector to match. See Marked(String) for more information.
Returns
An array representing the matched view objects.
Implements
Applies to
Flash(Func<AppQuery,AppQuery>)
Highlights the results of the query by making them flash. Specify view elements using the fluent API. Defaults to all view objects that are visible.
public Xamarin.UITest.Queries.AppResult[] Flash (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> query = null);
abstract member Flash : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> -> Xamarin.UITest.Queries.AppResult[]
override this.Flash : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> -> Xamarin.UITest.Queries.AppResult[]
Public Function Flash (Optional query As Func(Of AppQuery, AppQuery) = null) As AppResult()
Parameters
Entry point for the fluent API to specify the elements. If left as null
flashes all visible view
objects.
Returns
An array representing the matched view objects.