2021-01-07 20:46:05 +01:00
# class: Touchscreen
2022-07-06 02:24:50 +02:00
* since: v1.8
2021-01-07 20:46:05 +01:00
The Touchscreen class operates in main-frame CSS pixels relative to the top-left corner of the viewport. Methods on the
2021-03-26 18:47:16 +01:00
touchscreen can only be used in browser contexts that have been initialized with `hasTouch` set to true.
2021-01-07 20:46:05 +01:00
## async method: Touchscreen.tap
2022-07-06 02:24:50 +02:00
* since: v1.8
2021-01-07 20:46:05 +01:00
Dispatches a `touchstart` and `touchend` event with a single touch at the position ([`param: x`],[`param: y`]).
2023-01-28 00:51:57 +01:00
:::note
[`method: Page.tap`] the method will throw if [`option: hasTouch`] option of the browser context is false.
:::
2021-01-07 20:46:05 +01:00
### param: Touchscreen.tap.x
2022-07-06 02:24:50 +02:00
* since: v1.8
2021-01-07 20:46:05 +01:00
- `x` < [float]>
### param: Touchscreen.tap.y
2022-07-06 02:24:50 +02:00
* since: v1.8
2021-01-07 20:46:05 +01:00
- `y` < [float]>
2024-06-27 23:37:36 +02:00
## async method: Touchscreen.touch
* since: v1.46
Synthesizes a touch event.
### param: Touchscreen.touch.type
* since: v1.46
- `type` < [TouchType]< "touchstart"|"touchend"|"touchmove"|"touchcancel">>
Type of the touch event.
### param: Touchscreen.touch.touches
* since: v1.46
- `touchPoints` < [Array]< [Object]>>
- `x` < [float]> x coordinate of the event in CSS pixels.
- `y` < [float]> y coordinate of the event in CSS pixels.
- `id` ?< [int]> Identifier used to track the touch point between events, must be unique within an event. Optional.
List of touch points for this event. `id` is a unique identifier of a touch point that helps identify it between touch events for the duration of its movement around the surface.