I'm trying to make a test that will open Facebook, log in and search something. However I'm having trouble getting Facebook to search. Selenium types whatever it needs in the search bar, but I can't find how to locate the search button or press the enter key.
*** Settings ***
Documentation Tell pui she bitch
Library Selenium2Library
*** Variables ***
*** Test Cases ***
User must tell pui she bitch
open browser http://www.facebook.com
set browser implicit wait 5
input text name=email *****
input text name=pass ****
click button id=u_0_q
input text name=q *****
press key \\13
close browser
*** Keywords ***