Skip to content

Update performSwipe method signature to match source code #3203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/helpers/Appium.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down