Skip to content

Commit be408c0

Browse files
authored
[py]: remove redundant actions array of action_chains (#10716)
remove redundant actions array of `action_chains`
1 parent a969654 commit be408c0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

py/selenium/webdriver/common/action_chains.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def __init__(self, driver, duration=250):
6969
- duration: override the default 250 msecs of DEFAULT_MOVE_DURATION in PointerInput
7070
"""
7171
self._driver = driver
72-
self._actions = []
7372
self.w3c_actions = ActionBuilder(driver, duration=duration)
7473

7574
def perform(self):
@@ -85,7 +84,6 @@ def reset_actions(self):
8584
self.w3c_actions.clear_actions()
8685
for device in self.w3c_actions.devices:
8786
device.clear_actions()
88-
self._actions = []
8987

9088
def click(self, on_element=None):
9189
"""

0 commit comments

Comments
 (0)