diff --git a/py/selenium/webdriver/common/action_chains.py b/py/selenium/webdriver/common/action_chains.py index 3315524cfffb5..bb1240b838830 100644 --- a/py/selenium/webdriver/common/action_chains.py +++ b/py/selenium/webdriver/common/action_chains.py @@ -69,7 +69,6 @@ def __init__(self, driver, duration=250): - duration: override the default 250 msecs of DEFAULT_MOVE_DURATION in PointerInput """ self._driver = driver - self._actions = [] self.w3c_actions = ActionBuilder(driver, duration=duration) def perform(self): @@ -85,7 +84,6 @@ def reset_actions(self): self.w3c_actions.clear_actions() for device in self.w3c_actions.devices: device.clear_actions() - self._actions = [] def click(self, on_element=None): """