New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 659939 link

Starred by 2 users

Issue metadata

Status: Duplicate
Merged: issue 667387
Owner: ----
Closed: Dec 2016
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: Windows
Pri: 2
Type: Bug-Regression



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
 
Screen - before shortcut.png
49.9 KB View Download
Screen - after shortcut.png
38.5 KB View Download
Screen - selenium java code.png
13.4 KB View Download
Labels: TE-NeedsTriageHelp
Components: Tests>WebDriver
Cc: samu...@chromium.org
samuong@ is this a duplicate of 515171
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)
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.
Mergedinto: 667387
Status: Duplicate (was: Unconfirmed)

Sign in to add a comment