https://github.com/robotframework/oldseleniumlibrary
Deprecated Selenium library for Robot Framework
https://github.com/robotframework/oldseleniumlibrary
Last synced: 4 months ago
JSON representation
Deprecated Selenium library for Robot Framework
- Host: GitHub
- URL: https://github.com/robotframework/oldseleniumlibrary
- Owner: robotframework
- License: apache-2.0
- Archived: true
- Created: 2015-08-17T08:33:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-02T11:53:40.000Z (over 8 years ago)
- Last Synced: 2024-09-27T10:41:19.869Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 178 MB
- Stars: 13
- Watchers: 8
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
Selenium test library for Robot Framework
=========================================
This library is **deprecated**. Please use `Selenium2Library
`_ instead.
Introduction
------------
SeleniumLibrary is a test library for Robot Framework that enables testing
of web applications. As the name suggests, it uses `Selenium tool
`_ internally. Because it uses the deprecated
Selenium 1.0 version also the library itself is deprecated. All new projects
should use Selenium2Library_ and existing users are also recommended to upgrade
to it.
This projects has been migrated from dying `Google Code
`_.
Installation
------------
If you have pip installed, you can install SeleniumLibrary by running::
pip install --upgrade robotframework-seleniumlibrary
For other alternatives and more information in general see ``__.
Usage
-----
To run tests with Robot Framework and SeleniumLibrary following things
must be done
- SeleniumLibrary must be taken into use in Robot test data.
See `Robot Framework User Guide`__ for more information.
- Selenium server must be started with command
``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
typically something like
``/usr/lib/python[version]/site-packages/SeleniumLibrary/lib``.
__ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html
Documentation
-------------
General library usage and available keywords are documented in `library documentation
`_.
`Wiki `_ contains additional
information. Some information there is outdated, though, and some links point to the
old `Google Code`_ project.