Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a webdriver Action to perform some keys combinations:

new Actions(getWebDriver()).sendKeys(Keys.CONTROL, ..).perform();

My problem is that the Keys.CONTROL remains activated after the action is performed. And after some new clicks, I have new opened tabs on my browser and strange behaviors due to fact that the key is still activated. How to release the key? Thanks.

share|improve this question

1 Answer

Send the Key again once you want it to end, it works as a toggle switch.

share|improve this answer
It doesn't work – Ioan Nov 12 '12 at 8:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.