We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60091b commit 3d6c44eCopy full SHA for 3d6c44e
1 file changed
modules/examples/e2e_test/key_events/key_events_spec.es6
@@ -25,8 +25,10 @@ describe('key_events', function () {
25
firstArea.sendKeys(' ');
26
expect(firstArea.getText()).toBe('space');
27
28
- firstArea.sendKeys('a');
29
- expect(firstArea.getText()).toBe('a');
+ // It would not work with a letter which position depends on the keyboard layout (ie AZERTY vs
+ // QWERTY), see https://code.google.com/p/chromedriver/issues/detail?id=553
30
+ firstArea.sendKeys('u');
31
+ expect(firstArea.getText()).toBe('u');
32
33
firstArea.sendKeys(protractor.Key.CONTROL, 'b');
34
expect(firstArea.getText()).toBe('control.b');
0 commit comments