.swipeLeft(options)
Performs a swipe left gesture in the context of the device viewport.
Usage
device.swipeLeft(options)
Parameters
options(Object):options.x(Number?): X coordinate to begin the gesture from. Defaults to eitherdistanceor the derived distance frompercentage.options.y(Number?): Y coordinate to begin the gesture from. Defaults to 0.options.distance(Number?): Distance of swipe in density independent pixels (DIP). Required ifpercentageisn't provided.options.percentage(Number?): Percentage distance (0-1) of swipe relative to the height of the device viewport. Required ifdistanceisn't provided.options.duration(Number?): Time in milliseconds to perform the swipe gesture.
Returns
Promise: A promise that resolves after the gesture is complete.
Support
| Platform | Supported |
|---|---|
| iOS | Yes |
| Android | Yes |
| Web | No |
Examples
Swipe left 50% of the screen. Given a viewport width of 350, this will swipe left from the coordinate (175, 0) to (0, 0), relative to the device viewport:
const { device } = require("appdriver");
(async () => {
await device.swipeLeft({ percentage: 0.5 });
})();
Swipe left 200 pixels. This will swipe left from the coordinate (300, 200) to (100, 200), relative to the device viewport:
const { device } = require("appdriver");
(async () => {
await device.swipeLeft({ x: 300, y: 200, distance: 200 });
})();