I am trying to send keys to browser(not element) using this code:
Actions action = new Actions(driver);
action.sendKeys("Hello! World!");
action.perform();
It works well in Chrome and IE8, but get the result World
in Firefox!
I am using Firefox 22 and Selenium WebDriver 2.32.0
Is it a bug? Thank you.