我正在尝试使用以下代码将密钥发送到浏览器(不是元素):
Actions action = new Actions(driver);
action.sendKeys("Hello! World!");
action.perform();
它在 Chrome 和 IE8 中运行良好,但World
在 Firefox 中得到结果!
我正在使用 Firefox 22 和 Selenium WebDriver 2.32.0
它是一个错误吗?谢谢你。