diff --git a/docs/helpers/Appium.md b/docs/helpers/Appium.md index 1e4f0727a..38e6bee9f 100644 --- a/docs/helpers/Appium.md +++ b/docs/helpers/Appium.md @@ -591,13 +591,13 @@ Returns **[Promise][4]<void>** Appium: support Android and iOS Perform a swipe on the screen. ```js -I.performswipe(100,200); +I.performswipe({ x: 300, y: 100 }, { x: 200, y: 100 }); ``` #### Parameters -- `from` **[number][10]** -- `to` **[number][10]** Appium: support Android and iOS +- `from` **[object][8]** +- `to` **[object][8]** Appium: support Android and iOS ### swipeDown