Selenium Standalone Server 2.47.0 是否支持 "sendKeys" 命令?

Does Selenium Standalone Server 2.47.0 supports "sendKeys" command?

我正在使用 Selenium Standalone 服务器 2.47.0,它支持 sendKeys 命令吗?

有人在 2.47.0 中使用过 sendKeys 命令吗?

注意:我知道我们可以使用 type 命令,但我需要 sendKeys 才能工作。

是的,确实如此,这是我们代码中的示例:

protected void type(String xpath, String text) {
    WebElement element = driver.findElement(By.xpath(xpath));
    element.sendKeys(text);
}

正在使用 构建信息:版本:'2.47.0',修订:'0e4837e',时间:'2015-07-29 22:56:05'

是的,.sendkeys("texthere") 是 Selenium 独立服务器 2.47.0 中的有效选项。