We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031c90b commit 70ce8faCopy full SHA for 70ce8fa
notebook/tests/selenium/utils.py
@@ -281,5 +281,6 @@ def trigger_keystrokes(browser, *keys):
281
for i in modifiers_keys: ac = ac.key_down(i)
282
ac.send_keys(keys[-1])
283
for i in modifiers_keys[::-1]: ac = ac.key_up(i)
284
+ ac.perform()
285
else: # single key stroke. Check if modifier eg. "up"
286
browser.send_keys(getattr(Keys, keys[0].upper(), keys[0]))
0 commit comments