RESOLVED FIXED205997
WebDriver: pressed virtual keys not correctly handled in action sequences
https://bugs.webkit.org/show_bug.cgi?id=205997
Summary WebDriver: pressed virtual keys not correctly handled in action sequences
Carlos Garcia Campos
Reported 2020-01-09 06:19:08 PST
We are assuming that only one virtual key can be pressed and that a key up always releases the pressed virtual key if any. We should keep a list of pressed keys and remove them from the list when key up happens for them.
Attachments
Patch (5.99 KB, patch)
2020-01-09 06:22 PST, Carlos Garcia Campos
bburg: review+
Carlos Garcia Campos
Comment 1 2020-01-09 06:22:25 PST
Dean Jackson
Comment 2 2020-01-09 10:44:15 PST
Comment on attachment 387216 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=387216&action=review Can this be tested? > Source/WebDriver/Session.cpp:2613 > + virtualKeys->pushString(virtualKey); Where does currentState.pressedVirtualKeys get emptied? > Source/WebDriver/Session.h:206 > + HashSet<String> pressedVirtualKeys; Would this be better off as a Vector? Do you want the keys replayed in order? > Source/WebKit/ChangeLog:8 > + When modifiers are present we need to translate the keys that might be affected by the modifiers. I'm not sure how this is related.
Carlos Garcia Campos
Comment 3 2020-01-10 00:53:01 PST
(In reply to Dean Jackson from comment #2) > Comment on attachment 387216 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=387216&action=review > > Can this be tested? It's already tested, this fixes imported/w3c/webdriver/tests/perform_actions/key_modifiers.py::test_shift_modifier_generates_capital_letters[\ue008] and imported/w3c/webdriver/tests/perform_actions/key_modifiers.py::test_shift_modifier_generates_capital_letters[\ue050] > > Source/WebDriver/Session.cpp:2613 > > + virtualKeys->pushString(virtualKey); > > Where does currentState.pressedVirtualKeys get emptied? The keys are removed when the keyup happens for them. > > Source/WebDriver/Session.h:206 > > + HashSet<String> pressedVirtualKeys; > > Would this be better off as a Vector? Do you want the keys replayed in order? You can get keyDown(Shift), keyDown(Control), keyUp(Shift), keyUp(Control) for example. > > Source/WebKit/ChangeLog:8 > > + When modifiers are present we need to translate the keys that might be affected by the modifiers. > > I'm not sure how this is related. There are actually two issues the tests, one is that the virtual key pressed is lost when any other keyup happens, and the other is that we don't translate the keyvals when modifiers are present. I need both changes to fix those tests. I can split the patch, but I think they are related enough.
Blaze Burg
Comment 4 2020-01-10 13:54:18 PST
Comment on attachment 387216 [details] Patch r=me
Carlos Garcia Campos
Comment 5 2020-01-13 01:31:35 PST
Radar WebKit Bug Importer
Comment 6 2020-01-13 01:32:13 PST
Note You need to log in before you can comment on or make changes to this bug.