Touchscreen
The Touchscreen class operates in main-frame CSS pixels relative to the top-left corner of the viewport. Methods on the touchscreen can only be used in browser contexts that have been initialized with hasTouch
set to true.
Methods
TapAsync
Added before v1.9Dispatches a touchstart
and touchend
event with a single touch at the position (x,y).
note
Page.TapAsync() the method will throw if HasTouch option of the browser context is false.
Usage
await Touchscreen.TapAsync(x, y);
Arguments
-
x
[float]#X coordinate relative to the main frame's viewport in CSS pixels.
-
y
[float]#Y coordinate relative to the main frame's viewport in CSS pixels.
Returns