Issue metadata
Sign in to add a comment
|
Selenium 2.2x + Chrome 54 | sendKeys() not working after keyDown() action
Reported by
mstanko...@emisia.net,
Oct 27 2016
|
||||||||||||||||||||||||
Issue description
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0
Steps to reproduce the problem:
my java code for changing shortcut is:
Actions action = new Actions(getDriver());
action.keyDown(Keys.CONTROL).sendKeys("Q").perform();
action.keyUp(Keys.CONTROL).perform();
and after updating chrome from 53 to 54 version my code not working anymore
What is the expected behavior?
Shortcut should change into "Ctrl+Q"
What went wrong?
Shortcut is changed into "Ctrl+"
Did this work before? Yes 53
Chrome version: Version 54.0.2840.71 m Channel: n/a
OS Version: WIN10
Flash Version: 23.0.0.205
see screenshots
,
Nov 2 2016
,
Nov 2 2016
samuong@ is this a duplicate of 515171
,
Nov 24 2016
still very big problem (cannot reproduce on chrome 53) Following code working fine on chrome 53 and after updating to 54 not working anymore reproduction steps: 1. put cursor at any input field in the middle of text 2. run following code String allKeys = Keys.chord(Keys.CONTROL, Keys.SHIFT, Keys.ARROW_LEFT); Actions action = new Actions(getDriver()); action.sendKeys(allKeys).perform(); actual: nothing happens expected: text should be selected (previous word)
,
Nov 24 2016
Any news about this issue? I have the same problem with my shortcut tests they worked on chrome 53 and after chrome update they are not working. Thanks.
,
Dec 16 2016
|
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by sureshkumari@chromium.org
, Oct 28 2016