Table of Contents

Interface ITouchscreen

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll

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.

public interface ITouchscreen

Methods

TapAsync(float, float)

Dispatches a touchstart and touchend event with a single touch at the position (x,y).

Task TapAsync(float x, float y)

Parameters

x float
y float

Returns

Task

Remarks

TapAsync(string, PageTapOptions?) the method will throw if hasTouch option of the browser context is false.