Skip to content

Commit 63770e8

Browse files
authored
fix: typo in ActionHelpers (appium#937)
touc -> touch
1 parent 17639ea commit 63770e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appium/webdriver/extensions/action_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def tap(self, positions: List[Tuple[int, int]], duration: Optional[int] = None)
9696
"""
9797
if len(positions) == 1:
9898
actions = ActionChains(self)
99-
actions.w3c_actions = ActionBuilder(self, mouse=PointerInput(interaction.POINTER_TOUCH, 'touc'))
99+
actions.w3c_actions = ActionBuilder(self, mouse=PointerInput(interaction.POINTER_TOUCH, 'touch'))
100100
x = positions[0][0]
101101
y = positions[0][1]
102102
actions.w3c_actions.pointer_action.move_to_location(x, y)

0 commit comments

Comments
 (0)