Skip to content

Commit

Permalink
fix: typo in ActionHelpers (#937)
Browse files Browse the repository at this point in the history
touc -> touch
  • Loading branch information
kkb912002 authored Dec 14, 2023
1 parent 17639ea commit 63770e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appium/webdriver/extensions/action_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def tap(self, positions: List[Tuple[int, int]], duration: Optional[int] = None)
"""
if len(positions) == 1:
actions = ActionChains(self)
actions.w3c_actions = ActionBuilder(self, mouse=PointerInput(interaction.POINTER_TOUCH, 'touc'))
actions.w3c_actions = ActionBuilder(self, mouse=PointerInput(interaction.POINTER_TOUCH, 'touch'))
x = positions[0][0]
y = positions[0][1]
actions.w3c_actions.pointer_action.move_to_location(x, y)
Expand Down

0 comments on commit 63770e8

Please sign in to comment.