Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

<tr>
    <td>keyDown</td>
    <td>id=zc_0_4_3-real</td>
    <td>10</td>
</tr>
<tr>
    <td>keyUp</td>
    <td>id=zc_0_4_3-real</td>
    <td>10</td>
</tr>
<tr>
    <td>keyPress</td>
    <td>id=zc_0_4_3-real</td>
    <td>10</td>
</tr>
share|improve this question

3 Answers

up vote 3 down vote accepted

For example to submit a form by pressing enter, the only one I can figure out is:

Command: keyPressAndWait
Target:  id=q              [depends on your form of course]
Value:   \\13              [for enter - any ascii value can go here]

So it looks like this:

<tr>
<td>keyPressAndWait</td>
<td>id=q</td>
<td>\13</td>
</tr>

Hope it helps Paul

share|improve this answer
1  
:-/ The Selenium recorder always turns \13 into \\13... – Aaron Digulla Nov 19 '11 at 6:46
And what is the code for "cursor down"? – Aaron Digulla Nov 19 '11 at 20:21
2  
For anyone else encountering the \\13 problem. Ensure you are using the correct command, eg keyPress, and not typeKeys. – SystemicPlural Jan 23 '12 at 14:11

You can use code 13 for enter key, code 9 for tab key, code 40 for down key, 8 for backspace key

share|improve this answer

The Best Answer to the qs how to Record the Enter Key Through Selenium IDE

<tr>
<td>keyDown</td>
<td>id=txtFilterContentUnit</td>
<td>\13 </td>
</tr>

Its Working i tried that on Selenium IDE here. replace txtFilterContentUnit with your text box name.

hope u can do it -Abhijeet

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.