Skip to content

Commit 2e0ff4e

Browse files
authored
fix: add return self in MultiAction#add (#964)
1 parent 1c6dcdf commit 2e0ff4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

appium/webdriver/common/multi_action.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(self, driver: 'WebDriver', element: Optional['WebElement'] = None)
4545
self._element = element
4646
self._touch_actions: List['TouchAction'] = []
4747

48-
def add(self, *touch_actions: 'TouchAction') -> None:
48+
def add(self, *touch_actions: 'TouchAction') -> 'MultiAction':
4949
"""Add TouchAction objects to the MultiAction, to be performed later.
5050
5151
Args:
@@ -67,6 +67,8 @@ def add(self, *touch_actions: 'TouchAction') -> None:
6767

6868
self._touch_actions.append(copy.copy(touch_action))
6969

70+
return self
71+
7072
def perform(self) -> 'MultiAction':
7173
"""Perform the actions stored in the object.
7274

0 commit comments

Comments
 (0)