Skip to content

Commit 70ce8fa

Browse files
author
arovitn
committed
forgot adding .perform() for ActionChain
1 parent 031c90b commit 70ce8fa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

notebook/tests/selenium/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,5 +281,6 @@ def trigger_keystrokes(browser, *keys):
281281
for i in modifiers_keys: ac = ac.key_down(i)
282282
ac.send_keys(keys[-1])
283283
for i in modifiers_keys[::-1]: ac = ac.key_up(i)
284+
ac.perform()
284285
else: # single key stroke. Check if modifier eg. "up"
285286
browser.send_keys(getattr(Keys, keys[0].upper(), keys[0]))

0 commit comments

Comments
 (0)