I'm using Selenium Standalone server 2.47.0, does it support the sendKeys
command?
Any one used sendKeys
command in 2.47.0?
Note: I know we can use type
command but I need sendKeys
to work.
I'm using Selenium Standalone server 2.47.0, does it support the sendKeys
command?
Any one used sendKeys
command in 2.47.0?
Note: I know we can use type
command but I need sendKeys
to work.
Yes, it definitely does, here is an example from our code:
protected void type(String xpath, String text) {
WebElement element = driver.findElement(By.xpath(xpath));
element.sendKeys(text);
}
using Build info: version: '2.47.0', revision: '0e4837e', time: '2015-07-29 22:56:05'
Yes, .sendkeys("texthere")
is a valid option in Selenium Standalone server 2.47.0.
or a ... whatever. Tell us what you really want to do with what kind of tool (looks like you are recording with selenium-ide or are you replaying some recorded script?) and show us some of your HTML page code with the element you want to type text to and a part of the script or code that runs the test. – Würgspaß Sep 25 '15 at 16:39