|
4 | 4 | Robot Framework Quick Start Guide
|
5 | 5 | =====================================
|
6 | 6 |
|
7 |
| -Copyright © Nokia Solutions and Networks. Licensed under the |
| 7 | +Copyright © Nokia Networks. Licensed under the |
8 | 8 | `Creative Commons Attribution 3.0 Unported`__ license.
|
9 | 9 |
|
10 | 10 | __ http://creativecommons.org/licenses/by/3.0/
|
@@ -144,18 +144,23 @@ Execution
|
144 | 144 |
|
145 | 145 | After installations you still need to get the demo itself. It is easiest to
|
146 | 146 | download a certain release__ or grab the `latest content`__ and extract the
|
147 |
| -package somewhere, but it is also possible to clone the repository__. |
| 147 | +package somewhere, but it is also possible to clone the `project repository`__. |
148 | 148 |
|
149 | 149 | After installations and with all other preconditions in place, you can run
|
150 |
| -the demo on the command line by using `pybot` command:: |
| 150 | +the demo on the command line by using the `robot` command:: |
| 151 | + |
| 152 | + robot QuickStart.rst |
| 153 | + |
| 154 | +If you use Robot Framework 2.9 or older, instead of the `robot` command you |
| 155 | +need to use `pybot`:: |
151 | 156 |
|
152 | 157 | pybot QuickStart.rst
|
153 | 158 |
|
154 | 159 | You can also configure the execution with various command line options::
|
155 | 160 |
|
156 |
| - pybot --log custom_log.html --name Custom_Name QuickStart.rst |
| 161 | + robot --log custom_log.html --name Custom_Name QuickStart.rst |
157 | 162 |
|
158 |
| -For a list of available options run `pybot --help`. |
| 163 | +For a list of available options run `robot --help`. |
159 | 164 |
|
160 | 165 | __ https://github.com/robotframework/QuickStartGuide/releases
|
161 | 166 | __ https://github.com/robotframework/QuickStartGuide/archive/master.zip
|
@@ -383,7 +388,7 @@ Variables can also be given from the command line which is useful if
|
383 | 388 | the tests need to be executed in different environments. For example
|
384 | 389 | this demo can be executed like::
|
385 | 390 |
|
386 |
| - pybot --variable USERNAME:johndoe --variable PASSWORD:J0hnD0e QuickStart.rst |
| 391 | + robot --variable USERNAME:johndoe --variable PASSWORD:J0hnD0e QuickStart.rst |
387 | 392 |
|
388 | 393 | In addition to user defined variables, there are some built-in variables that
|
389 | 394 | are always available. These variables include `${TEMPDIR}` and `${/}` which
|
@@ -480,8 +485,8 @@ based on tags. Tags can also be used for many other purposes, one of the most
|
480 | 485 | important being the possibility to select what tests to execute. You can try,
|
481 | 486 | for example, following commands::
|
482 | 487 |
|
483 |
| - pybot --include smoke QuickStart.rst |
484 |
| - pybot --exclude database QuickStart.rst |
| 488 | + robot --include smoke QuickStart.rst |
| 489 | + robot --exclude database QuickStart.rst |
485 | 490 |
|
486 | 491 | Creating test libraries
|
487 | 492 | =======================
|
|
0 commit comments