![]() |
T-Plan Robot Enterprise 4.3.1 Doc Collection GUI Reference |
25/09/17 |
This tab works closely with the script in the active editor. Its
controls correspond to commands in the test script and any change
will be also reflected in the script content:
Option |
Description |
Project
(unique) |
Create a unique
project report (output) path for each script
execution. The script outputs will be redirected to a new
folder of <project_home>/reports/<script_file_name>_<time_stamp>
where the time stamp is the execution (compilation) start
time in milliseconds elapsed since 1 January 1970. See the Projects help topic for
details.IMPORTANT: Starting with v4.0 this is the default option when the global path is not set. Any project located script that does not set the _REPORT_DIR variable will output by default to
a unique project report path. Versions 3.x and older
in this case fall back to the user home folder. |
Project
(shared) |
Redirect the script outputs to the default project folder. This will rewrite the script outputs on each execution. See the Projects help topic for details. |
Global... |
Redirect the script outputs a global path specified
in the Language
panel of the Preferences
window. This option is compatible with the 2.x releases and
it is applied when the script code does not make any attempt
to modify the _REPORT_DIR variable.IMPORTANT: Setting of the Global path will be saved to the configuration file which will be then loaded by all Robot processes on start up. That's why it will impact all scripts on the machine which do not set the _REPORT_DIR
variable explicitly. Use this option with care. |
Custom... |
Save the script outputs to a custom path. |
Option |
Description |
Project
template dir |
Resolve relatively referenced template images against
the project template path at <project_home>/templates .
See the Projects help
topic for details. IMPORTANT: Starting with v4.0 this is the default option when the global path is not set. Any project located script that does not set the _TEMPLATE_DIR variable will default to the project
template directory. Versions 3.x and older in this
case fall back to the user home folder. |
Global... |
Resolve relatively referenced template images against
a global path specified in the Language panel of the Preferences window. This
option is compatible with the 2.x releases and it is applied
when the script code does not make any attempt to modify the
_TEMPLATE_DIR variable.IMPORTANT: Setting of the Global path will be saved to the configuration file which will be then loaded by all Robot processes on start up. That's why it will impact all scripts on the machine which do not set the _REPORT_DIR
variable explicitly. Use this option with care. |
Custom |
Search for template images in a custom path. |
_REPORT_DIR
and/or _TEMPLATE_DIR
variables and/or the Report command/method call get manually updated
in the editor, the fields of the Settings tab will change as soon as
the script gets compiled. If the on-the-fly
compilation is switched off the fields will remain out of sync
with the script until the script gets compiled or executed.-v/--variable
CLI option. Such variables have
the '(fixed)' suffix appended to their name. For example, the image
on the left displays a fixed variable called MY_FIXED_VARIABLE
because the tool was started with the -v
"MY_FIXED_VARIABLE=fixed"
CLI option. Fixed variables can't
be changed in the script and their value remains constant for the
whole time of T-Plan Robot Enterprise execution. If you make an attempt to
modify such variable using the Var or Eval command, it will be
ignored and no error message or warning will be reported. This
mechanism was designed to allow to design parametrized test scripts.