I'm looking for a quick way to type an enter or return key in Selenium. Unfortunately the form I'm trying to test (not my own code so I can't modify) doesn't have a Submit button. When working with it manually, I just type ENTER or RETURN. I need to know how to do that with the Selenium type command as there is no button to click.
|
|
|||||||||||||
|
the |
|||||||||||||||||
|
|
Now that Selenium 2 has been released, it's a bit easier to send an Enter key, since you can do it with the
|
|||
|
|
|
You just do this:
|
||||
|
|
|
I just like to note that I needed this for my Cucumber tests and found out that if you like to simulate pressing the enter/return key, you need to send the |
|||
|
|
|
For those folks who are using WebDriverJS Keys.RETURN would be referenced as
A more complete example as a reference might be helpful too:
|
|||
|
|