Skip to content

Commit 48486cd

Browse files
committed
Update QuickStart.rst
- Use `robot` command instead of `pybot` - Update Nokia company name.
1 parent 1dec340 commit 48486cd

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

QuickStart.rst

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Robot Framework Quick Start Guide
55
=====================================
66

7-
Copyright © Nokia Solutions and Networks. Licensed under the
7+
Copyright © Nokia Networks. Licensed under the
88
`Creative Commons Attribution 3.0 Unported`__ license.
99

1010
__ http://creativecommons.org/licenses/by/3.0/
@@ -144,18 +144,23 @@ Execution
144144

145145
After installations you still need to get the demo itself. It is easiest to
146146
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`__.
148148

149149
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`::
151156

152157
pybot QuickStart.rst
153158

154159
You can also configure the execution with various command line options::
155160

156-
pybot --log custom_log.html --name Custom_Name QuickStart.rst
161+
robot --log custom_log.html --name Custom_Name QuickStart.rst
157162

158-
For a list of available options run `pybot --help`.
163+
For a list of available options run `robot --help`.
159164

160165
__ https://github.com/robotframework/QuickStartGuide/releases
161166
__ 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
383388
the tests need to be executed in different environments. For example
384389
this demo can be executed like::
385390

386-
pybot --variable USERNAME:johndoe --variable PASSWORD:J0hnD0e QuickStart.rst
391+
robot --variable USERNAME:johndoe --variable PASSWORD:J0hnD0e QuickStart.rst
387392

388393
In addition to user defined variables, there are some built-in variables that
389394
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
480485
important being the possibility to select what tests to execute. You can try,
481486
for example, following commands::
482487

483-
pybot --include smoke QuickStart.rst
484-
pybot --exclude database QuickStart.rst
488+
robot --include smoke QuickStart.rst
489+
robot --exclude database QuickStart.rst
485490

486491
Creating test libraries
487492
=======================

0 commit comments

Comments
 (0)