Set up your first Robot Framework test with WebDriver
With Selenium2Library you can run WebDriver tests with Robot Framework.
Robot Framework is a test automation framework to run acceptance tests.
With Robot Framework you can build easy to read test cases, it allows using keyword driven, behavior driven approaches.
The framework provides reports in HTML format.
Below is an example on how to write your first Selenium test with Robot Framework.
Example code (Selenium WebDriver):
Open Browser To Login Page open browser http://google.com firefox remote_url=http://api_key:api_secret@hub.testingbot.com:4444/wd/hub desired_capabilities=browserName:firefox,version:14 Maximize Browser Window Title Should Be Google Close Browser
