Skip to content

Commit 3df6125

Browse files
committed
Change call to single-gesture tap
1 parent 249dd23 commit 3df6125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appium/webdriver/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def tap(self, positions, duration=None):
201201
duration = duration
202202
action.long_press(x=x, y=y, duration=duration).release()
203203
else:
204-
action.press(x=x, y=y).release()
204+
action.tap(x=x, y=y).release()
205205
action.perform()
206206
else:
207207
ma = MultiAction(self)

0 commit comments

Comments
 (0)