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 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.

share|improve this question
1  
This might help asynchrony.blogspot.com/2008/11/… – Jonathan Parker Oct 27 '09 at 6:38
thanks, that was exactly what I needed! – croixhaug Oct 27 '09 at 6:46
@croixhaug: What are you using? Selenium RC or WebDriver (Selenium 2)? What about language? Java? C#? or what? – Ripon Al Wasim Jan 24 at 8:10
@RiponAlWasim, in 2009 (when the question was asked) there were no WebDriver. Also the answers for both have been here for a while... – Alex Okrushko Jan 31 at 22:14
@AlexOkrushko: yes, you are right – Ripon Al Wasim Feb 1 at 5:32

6 Answers

import org.openqa.selenium.Keys

WebElement.sendKeys(Keys.RETURN);

the import statement is for Java, for other languages it is maybe a different, for example python: from selenium.webdriver.common.keys import Keys

share|improve this answer
1  
+1 - that's what I needed – Denis Kniazhev Oct 6 '11 at 8:20
8  
I believe that it's moved. from selenium.webdriver.common.keys import Keys (stackoverflow.com/questions/5503489/…) – James Broadhead Jan 18 '12 at 17:06
@HJames Broadhead: I have checked it, the Keys class for the actual JAVA (2.17.0) is still org.openqa.selenium.Keys – Ralph Jan 20 '12 at 10:44
WebElement.sendKeys(Keys.RETURN); this code is perfect for WebDriver (not for Selenium RC). More details example for google search: driver.findElement(By.id("gbqfq")).clear(); driver.findElement(By.id("gbqfq")).sendKeys("Ripon Al Wasim"); driver.findElement(By.id("gbqfq")).sendKeys(Keys.RETURN); – Ripon Al Wasim Jul 19 '12 at 4:07
1  
I know that return is different than enter, but how is Keys.ENTER different? (I would think that Keys.RETURN would simply make it more obvious that it is a bot doing the action?) – NoBrainer Sep 21 '12 at 18:00

Now that Selenium 2 has been released, it's a bit easier to send an Enter key, since you can do it with the send_keys method of the selenium.webdriver.remote.webelement.WebElement class (this example code is in Python, but the same method exists in Java):

>>> from selenium import webdriver
>>> wd = webdriver.Firefox()
>>> wd.get("http://localhost/example/page")
>>> textbox = wd.find_element_by_css_selector("input")
>>> textbox.send_keys("Hello World\n")
share|improve this answer

selenium.keyPress("css=input.tagit-input.ui-autocomplete-input", "13");

share|improve this answer

You just do this:

final private WebElement input = driver.findElement(By.id("myId"));
input.clear();
input.sendKeys(value); // the value we want to set to input
input.sendKeys(Keys.RETURN);
share|improve this answer

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 :return value and not the :enter value (see the values described here)

share|improve this answer

For those folks who are using WebDriverJS Keys.RETURN would be referenced as

webdriver.Key.RETURN

A more complete example as a reference might be helpful too:

var pressEnterToSend = function () {
    var deferred = webdriver.promise.defer();
    webdriver.findElement(webdriver.By.id('id-of-input-element')).then(function (element) {
        element.sendKeys(webdriver.Key.RETURN);
        deferred.resolve();
    });

    return deferred.promise;
};
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.