1
- =====================================================
2
- Web testing with Robot Framework and Selenium2Library
3
- =====================================================
1
+ ====================================================
2
+ Web testing with Robot Framework and SeleniumLibrary
3
+ ====================================================
4
4
5
5
`Robot Framework `_ is a generic open source test automation framework and
6
- Selenium2Library _ is one of the many test libraries that can be used with
6
+ SeleniumLibrary _ is one of the many test libraries that can be used with
7
7
it. In addition to showing how they can be used together for web testing,
8
8
this demo introduces the basic Robot Framework test data syntax, how tests
9
9
are executed, and how logs and reports look like.
@@ -71,7 +71,7 @@ online.
71
71
72
72
The system specific keywords created here form our own
73
73
domain specific language. They utilize keywords provided
74
- by the imported Selenium2Library _ .
74
+ by the imported SeleniumLibrary _ .
75
75
76
76
See `Robot Framework User Guide `_ for more details about the test data syntax.
77
77
@@ -92,21 +92,21 @@ Preconditions
92
92
-------------
93
93
94
94
A precondition for running the tests is having `Robot Framework `_ and
95
- Selenium2Library _ installed, and they in turn require
95
+ SeleniumLibrary _ installed, and they in turn require
96
96
Python _. Robot Framework `installation instructions `__ cover both
97
97
Robot and Python installations, and Selenium2Library has its own
98
98
`installation instructions `__.
99
99
100
100
In practice it is easiest to install Robot Framework and
101
- Selenium2Library along with its dependencies using `pip `_ package
101
+ SeleniumLibrary along with its dependencies using `pip `_ package
102
102
manager. Once you have pip installed, all you need to do is running
103
103
these commands::
104
104
105
105
pip install robotframework
106
106
pip install robotframework-selenium2library
107
107
108
108
__ https://github.com/robotframework/robotframework/blob/master/INSTALL.rst
109
- __ https://github.com/robotframework/Selenium2Library /blob/master/INSTALL.rst
109
+ __ https://github.com/robotframework/SeleniumLibrary /blob/master/INSTALL.rst
110
110
111
111
Starting demo application
112
112
-------------------------
@@ -157,12 +157,10 @@ can be easily overridden from the command line::
157
157
robot --variable BROWSER:Chrome login_tests
158
158
robot --variable BROWSER:IE login_tests
159
159
160
- Consult Selenium2Library _ documentation about supported browsers. Notice also
161
- that other browsers than Firefox require separate browser drivers to be
162
- installed before they can be used with Selenium and Selenium2Library.
160
+ Consult SeleniumLibrary _ documentation about supported browsers.
163
161
164
162
.. _Robot Framework : http://robotframework.org
165
- .. _ Selenium2Library : https://github.com/robotframework/Selenium2Library
163
+ .. _ SeleniumLibrary : https://github.com/robotframework/SeleniumLibrary
166
164
.. _Python : http://python.org
167
165
.. _pip : http://pip-installer.org
168
166
.. _download page : https://bitbucket.org/robotframework/webdemo/downloads
0 commit comments