I need to simulate a tab keypress in Selenium RC, using the Java API. I do this after having entered some text using:
selenium.type(input, "mytext");
selenium.keyPress(input, ...
i m wondering how to use selenium's keyPress function to key in a string, it's easy to key a single character as:
selenium.keyPress("id=textbox", "\\119") (which is character 'w');
i know it's a selenium bug, but not sure if it's fixed yet. i tried to type in sth like '99.99', but the dot wont' show up. is there any way ...
say my short cut is shift + r how to keypress 2 keys? in selenium rc java
I just upgraded to Selenium 2 and having trouble simulating a keypress in firefox (maybe other browsers?). First of all, the new API, using IWebDrivers, does not provide a keypress funktion. ...
What is the exact HTML code to simulate ENTER, ESC, BACKSPACE and DOWN in Selenium IDE 1.3.0? typeKeys didn't work nor did this:
typeKeys
<tr> <td>keyDown</td> <td>id=zc_0_4_3-real</td> ...