Skip to content

Commit 464f7d5

Browse files
committed
Merge pull request #72 from appium/isaac-tap
Fix issue with single tap
2 parents 7fe8f19 + 109f539 commit 464f7d5

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
@@ -202,7 +202,7 @@ def tap(self, positions, duration=None):
202202
duration = duration
203203
action.long_press(x=x, y=y, duration=duration).release()
204204
else:
205-
action.tap(x=x, y=y).release()
205+
action.tap(x=x, y=y)
206206
action.perform()
207207
else:
208208
ma = MultiAction(self)

0 commit comments

Comments
 (0)