This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
IEDriverServer does not send chords correctly #7571
Open
Description
Originally reported on Google Code with ID 7571
We have a javascript application that, among other things, logs events that it receives.
We need to send chords (eg, CTRL+HOME) to Internet Explorer.
When we execute the following:
webElement.sendKeys(Keys.chord(Keys.CONTROL, Keys.HOME))
our application logs that it receieved a HOME key press, but w/out a control.
We have also tried composing the key strokes using actions:
new Actions(webDriver).keyDown(webElement, Keys.CONTROL).sendKeys(webElement, Keys.HOME).keyUp(webElement,
Keys.CONTROL)
but that produces the same result.
We are using IE 11 and IEDriverServer.exe version 2.33
Reported by cwellsta
on 2014-07-07 19:26:31