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

I'm stuck trying to get my selenium testing to simulate a down arrow key press.

Im just using the html format for my tests and am using typeKeys as the command, the target is correctly found, and for the value I am putting in \40 which seems to be converted into \\40 in the UI. When I run the command it ends up appending \40 to the current value of the input.

I'm using the latest version of the selenium ide from the site.

Any pointers?

Cheers

share|improve this question

1 Answer

up vote 6 down vote accepted

Selenium provides its own methods for this task.

Try using keyDown() instead of typeKeys()

share|improve this answer
Ah thanks mate. Don't know why I didn't try keyDown – RueTheWhirled Dec 21 '10 at 20:20
No bother, by the way, if the thing you're trying to test is the down button firing some event (I'm speculating, if not just ignore this) you might want to try cutting out the key press stuff and using fireEvent() directly instead. – Paul Andrew Dec 21 '10 at 20:33

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.