Let us analyze Keys.ENTER
and Keys.RETURN
in details.
Keys.ENTER
and Keys.RETURN
both are from org.openqa.selenium.Keys
, which extends java.lang.Enum<Keys>
and implements java.lang.CharSequence
Enum Keys :
Enum Keys
is the representations of pressable keys that aren't text. These are stored in the Unicode PUA (Private Use Area
) code points, 0xE000-0xF8FF.
Key Codes :
The special keys codes
for them are as follows :
- RETURN =
u'\ue006'
- ENTER =
u'\ue007'
The implementation of all the Enum Keys
are handled the same way.
Hence there is No Functional
or Operational
difference while working with either sendKeys(Keys.ENTER);
or WebElement.sendKeys(Keys.RETURN);
through Selenium.
Enter Key and Return Key :
On computer keyboards, the Enter (or the Return on Mac OSX) in most cases causes a command line, window form, or dialog box to operate its default function. This is typically to finish an "entry" and begin the desired process, and is usually an alternative to pressing an OK button.
The Return is often also referred as the Enter and they usually perform identical functions; however in some particular applications (mainly page layout) Return operates specifically like the Carriage Return key from which it originates. In contrast, the Enter is commonly labelled with its name in plain text on generic PC keyboards.
Wiki References : Enter Key
Carriage Return