Skip to content

Commit 4782802

Browse files
Merge pull request #34 from appium/isaac-tap
Change call to single-gesture tap
2 parents 249dd23 + 3df6125 commit 4782802

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)