iOSApp.Tap 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
Tap(Func<AppQuery,AppQuery>) |
Performs a tap / touch gesture on the matched element. If multiple elements are matched, the first one will be used. |
Tap(Func<AppQuery,AppWebQuery>) |
Performs a tap / touch gesture on the matched element. If multiple elements are matched, the first one will be used. |
Tap(String) |
Performs a tap / touch gesture on the matched element. If multiple elements are matched, the first one will be used. |
Tap(Func<AppQuery,AppQuery>)
Performs a tap / touch gesture on the matched element. If multiple elements are matched, the first one will be used.
public void Tap (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> query);
abstract member Tap : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> -> unit
override this.Tap : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> -> unit
Public Sub Tap (query As Func(Of AppQuery, AppQuery))
Parameters
Implements
Applies to
Tap(Func<AppQuery,AppWebQuery>)
Performs a tap / touch gesture on the matched element. If multiple elements are matched, the first one will be used.
public void Tap (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppWebQuery> query);
abstract member Tap : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> -> unit
override this.Tap : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppWebQuery> -> unit
Public Sub Tap (query As Func(Of AppQuery, AppWebQuery))
Parameters
- query
- Func<AppQuery,AppWebQuery>
Entry point for the fluent API to specify the element.
Implements
Applies to
Tap(String)
Performs a tap / touch gesture on the matched element. If multiple elements are matched, the first one will be used.
public void Tap (string marked);
abstract member Tap : string -> unit
override this.Tap : string -> unit
Public Sub Tap (marked As String)
Parameters
- marked
- String
Marked selector to match. See Marked(String) for more information.