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.