Skip to content
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.

Keboard shortcut with modifier key doesn't work on IE #7442

Open
@lukeis

Description

@lukeis

Originally reported on Google Code with ID 7442

My site contains a button which can be executed using a keyboard shortcut alt+g.
On chrome and firefox the following worked:
browser.actions().keyDown(protractor.Key.ALT).perform();
browser.actions().sendKeys(g).perform();
browser.actions().keyDown(protractor.Key.ALT).perform();

but on IE the shortcut doesn't work. it just ignore it with any possible error.
Also this doesn't work:

browser.actions().sendKeys(protractor.Key.ALT, "j").perform();


My suspect is that the modifier key (ALT) doesn't work on IE.
Selenium version:2.41.0
OS: windows 7 
Browser:IE
Browser version: 10

I can't allow access to my website but you can use the following JSfiddle:
http://jsfiddle.net/F6Gbw/2/light/
to test keyboard shortcuts.

Thanks,
   Omer

Reported by omer727 on 2014-06-05 15:23:58

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions