Package com.microsoft.playwright
Interface Touchscreen
-
public interface TouchscreenThe 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 withhasTouchset to true.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtap(double x, double y)Dispatches atouchstartandtouchendevent with a single touch at the position (x,y).
-
-
-
Method Detail
-
tap
void tap(double x, double y)Dispatches atouchstartandtouchendevent with a single touch at the position (x,y).NOTE:
Page.tap()the method will throw ifhasTouchoption of the browser context is false.- Since:
- v1.8
-
-