SeleniumLibrary is a test library for Robot Framework that enables testing of web applications. As the name suggests, it uses Selenium via Selenium-RC internally. Currently, not all features of Selenium are implemented in SeleniumLibrary, but most of them are quite trivial to implement when someone needs them.
To run tests with Robot Framework and SeleniumLibrary following things must be done
Robot Framework user guide
__ for more information.java -jar [path_to_server]/selenium_server.jar
,
where [path_to_server] depends on platform. On Windows it will be
'[PythonDir]\Lib\site-packages\SeleniumLibrary\lib' and on Linux it is
'/usr/lib/python[version]/site-packages/SeleniumLibrary/lib' __ http://code.google.com/p/robotframework/wiki/UserGuide
See INSTALLATION.txt for installation and uninstallation instructions.
demo/ A simple demonstration, with an application running on localhost.
doc/ Keyword documentation.
src/ Python source code.
test/ Acceptance tests for keywords using Robot Framework.
.. _Selenium: http://selenium.openqa.org .. _Selenium-RC: http://selenium-rc.openqa.org