@@ -67,9 +67,9 @@ __ `Test suite name and documentation`_
67
67
68
68
::
69
69
70
- robot test_cases.html
70
+ robot tests.robot
71
71
robot path/to/my_tests/
72
- robot c:\robot\tests.txt
72
+ robot c:\robot\tests.robot
73
73
74
74
It is also possible to give paths to several test case files or
75
75
directories at once, separated with spaces. In this case, Robot
@@ -83,8 +83,8 @@ often quite long and complicated. In most cases, it is thus better to
83
83
use the :option: `--name ` option for overriding it, as in the second
84
84
example below::
85
85
86
- robot my_tests.html your_tests.html
87
- robot --name Example path/to/tests/pattern_*.html
86
+ robot my_tests.robot your_tests.robot
87
+ robot --name Example path/to/tests/pattern_*.robot
88
88
89
89
Using command line options
90
90
--------------------------
@@ -101,7 +101,7 @@ Using options
101
101
When options are used, they must always be given between the runner
102
102
script and the data sources. For example::
103
103
104
- robot -L debug my_tests.txt
104
+ robot -L debug my_tests.robot
105
105
robot --include smoke --variable HOST:10.0.0.42 path/to/tests/
106
106
107
107
Short and long options
@@ -233,7 +233,7 @@ avoid the need to repeat them every time tests are run or ``rebot`` used.
233
233
.. sourcecode :: bash
234
234
235
235
export ROBOT_OPTIONS="--critical regression --tagdoc 'mytag:Example doc with spaces'"
236
- robot tests.txt
236
+ robot tests.robot
237
237
export REBOT_OPTIONS="--reportbackground green:yellow: red"
238
238
rebot --name example output.xml
239
239
@@ -345,7 +345,7 @@ Example below illustrates how errors and warnings look like in the log file.
345
345
<tr >
346
346
<td class =" time" >20090322  ; 19:58:42.528</td >
347
347
<td class =" error level" >ERROR</td >
348
- <td class =" msg" >Error in file '/home/robot/tests.html ' in table 'Setting' in element on row 2: Resource file 'resource.html ' does not exist</td >
348
+ <td class =" msg" >Error in file '/home/robot/tests.robot ' in table 'Setting' in element on row 2: Resource file 'resource.robot ' does not exist</td >
349
349
</tr >
350
350
<tr >
351
351
<td class =" time" >20090322  ; 19:58:43.931</td >
@@ -464,10 +464,10 @@ option was. This means that options in argument files can override options
464
464
before it, and its options can be overridden by options after it. It is possible
465
465
to use :option: `--argumentfile ` option multiple times or even recursively::
466
466
467
- robot --argumentfile all_arguments.txt
468
- robot --name Example --argumentfile other_options_and_paths.txt
469
- robot --argumentfile default_options.txt --name Example my_tests.html
470
- robot -A first.txt -A second.txt -A third.txt tests.txt
467
+ robot --argumentfile all_arguments.robot
468
+ robot --name Example --argumentfile other_options_and_paths.robot
469
+ robot --argumentfile default_options.txt --name Example my_tests.robot
470
+ robot -A first.txt -A second.txt -A third.txt tests.robot
471
471
472
472
Reading argument files from standard input
473
473
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -477,7 +477,7 @@ standard input stream instead of a file. This can be useful when generating
477
477
arguments with a script::
478
478
479
479
generate_arguments.sh | robot --argumentfile STDIN
480
- generate_arguments.sh | robot --name Example --argumentfile STDIN tests.txt
480
+ generate_arguments.sh | robot --name Example --argumentfile STDIN tests.robot
481
481
482
482
Getting help and version information
483
483
------------------------------------
@@ -606,7 +606,7 @@ outputs are very big. There are several ways to configure JVM options:
606
606
script that will pass them forward to Java. This is especially easy when
607
607
using `direct entry points `_::
608
608
609
- jython -J-Xmx1024m -m robot.run some_tests.txt
609
+ jython -J-Xmx1024m -m robot some_tests.robot
610
610
611
611
Debugging problems
612
612
------------------
0 commit comments