Skip to content

Variables

Introduction

Variables are an integral feature of Robot Framework, and they can be used in most places in test data. Most commonly, they are used in arguments for keywords in Test Case and Keyword sections, but also all settings allow variables in their values. A normal keyword name cannot be specified with a variable, but the BuiltIn keyword Run Keyword can be used to get the same effect.

Robot Framework has its own variables that can be used as scalars, lists or dictionaries using syntax ${SCALAR}, @{LIST} and &{DICT}, respectively. In addition to this, environment variables can be used directly with syntax %{ENV_VAR}.

Variables are useful, for example, in these cases:

  • When values used in multiple places in the data change often. When using variables, you only need to make changes in one place where the variable is defined.

  • When creating system-independent and operating-system-independent data. Using variables instead of hard-coded values eases that considerably (for example, ${RESOURCES} instead of c:\resources, or ${HOST} instead of 10.0.0.1:8080). Because variables can be set from the command line when tests are started, changing system-specific variables is easy (for example, --variable RESOURCES:/opt/resources --variable HOST:10.0.0.2:1234). This also facilitates localization testing, which often involves running the same tests with different localized strings.

  • When there is a need to have objects other than strings as arguments for keywords. This is not possible without variables, unless keywords themselves support argument conversion.

  • When different keywords, even in different test libraries, need to communicate. You can assign a return value from one keyword to a variable and pass it as an argument to another.

  • When values in the test data are long or otherwise complicated. For example, using ${URL} is more convenient than using something like http://long.domain.name:8080/path/to/service?foo=1&bar=2&zap=42.

If a non-existent variable is used in the test data, the keyword using it fails. If the same syntax that is used for variables is needed as a literal string, it must be escaped with a backslash as in \${NAME}.

Using variables

This section explains how to use variables using the normal scalar variable syntax ${var}, how to expand lists and dictionaries like @{var} and &{var}, respectively, and how to use environment variables like %{var}. Different ways how to create variables are discussed in the next section.

Robot Framework variables, similarly as keywords, are case-insensitive, and also spaces and underscores are ignored. However, it is recommended to use capital letters with global variables (for example, ${PATH} or ${TWO WORDS}) and small letters with local variables that are only available in certain test cases or user keywords (for example, ${my var}). Much more importantly, though, case should be used consistently.

A variable name, such as ${example}, consists of the variable identifier ($, @, &, %), curly braces ({, }), and the base name between the braces. When creating variables, there may also be a variable type definition after the base name like ${example: int}.

The variable base name can contain any characters. It is, however, highly recommended to use only alphabetic characters, numbers, underscores and spaces. That is a requirement for using the extended variable syntax already now and in the future that may be required with all variables.

Scalar variable syntax

The most common way to use variables in Robot Framework test data is using the scalar variable syntax like ${var}. When this syntax is used, the variable name is replaced with its value as-is. Most of the time variable values are strings, but variables can contain any object, including numbers, lists, dictionaries, or even custom objects.

The example below illustrates the usage of scalar variables. Assuming that the variables ${GREET} and ${NAME} are available and assigned to strings Hello and world, respectively, these two example test cases are equivalent:

1
2
3
4
5
6
7
8
*** Test Cases ***
Constants
    Log    Hello
    Log    Hello, world!!

Variables
    Log    ${GREET}
    Log    ${GREET}, ${NAME}!!

When a scalar variable is used alone without any text or other variables around it, like in ${GREET} above, the variable is replaced with its value as-is and the value can be any object. If the variable is not used alone, like ${GREER}, ${NAME}!! above, its value is first converted into a string and then concatenated with the other data.

Note

Variable values are used as-is without string conversion also when passing arguments to keywords using the named arguments syntax like argname=${var}.

The example below demonstrates the difference between having a variable in alone or with other content. First, let us assume that we have a variable ${STR} set to a string Hello, world! and ${OBJ} set to an instance of the following Python object:

1
2
3
4
class MyObj:

    def __str__(self):
        return "Hi, terra!"

With these two variables set, we then have the following test data:

1
2
3
4
5
6
*** Test Cases ***
Objects
    KW 1    ${STR}
    KW 2    ${OBJ}
    KW 3    I said "${STR}"
    KW 4    You said "${OBJ}"

Finally, when this test data is executed, different keywords receive the arguments as explained below:

  • KW 1 gets a string Hello, world!
  • KW 2 gets an object stored to variable ${OBJ}
  • KW 3 gets a string I said "Hello, world!"
  • KW 4 gets a string You said "Hi, terra!"

Scalar variables containing bytes

Variables containing bytes or bytearrays are handled slightly differently than other variables containing non-string values:

  • If they are used alone, everything works exactly as with other objects and their values are passed to keywords as-is.

  • If they are concatenated only with other variables that also contain bytes or bytearrays, the result is bytes instead of a string.

  • If they are concatenated with strings or with variables containing other types than bytes or bytearrays, they are converted to strings like other objects, but they have a different string representation than they normally have in Python. With Python the string representation contains surrounding quotes and a b prefix like b'\x00', but with Robot Framework quotes and the prefix are omitted, and each byte is mapped to a Unicode code point with the same ordinal. In practice this is same as converting bytes to strings using the Latin-1 encoding. This format has a big benefit that the resulting string can be converted back to bytes, for example, by using the BuiltIn keyword Convert To Bytes or by automatic argument conversion.

The following examples demonstrates using bytes and bytearrays would work exactly the same way. Variable ${a} is expected to contain bytes \x00\x01 and variable ${b} bytes a\xe4.

*** Test Cases ***
Bytes alone
    [Documentation]    Keyword gets bytes '\x00\x01'.
    Keyword    ${a}

Bytes concatenated with bytes
    [Documentation]    Keyword gets bytes '\x00\x01a\xe4'.
    Keyword    ${a}${b}

Bytes concatenated with others
    [Documentation]    Keyword gets string '=\x00\x01a\xe4='.
    Keyword    =${a}${b}=

Note

Getting bytes when variables containing bytes are concatenated is new in Robot Framework 7.2. With earlier versions the result was a string.

Note

All bytes being mapped to matching Unicode code points in string representation is new Robot Framework 7.2. With earlier versions, only bytes in the ASCII range were mapped directly to code points and other bytes were represented in an escaped format.

List variable syntax

When a variable is used as a scalar like ${EXAMPLE}, its value is be used as-is. If a variable value is a list or list-like, it is also possible to use it as a list variable like @{EXAMPLE}. In this case the list is expanded and individual items are passed in as separate arguments.

This is easiest to explain with an example. Assuming that a variable ${USER} contains a list with two items robot and secret, the first two of these tests are equivalent:

1
2
3
4
5
6
7
8
9
*** Test Cases ***
Constants
    Login    robot    secret

List variable
    Login    @{USER}

List as scalar
    Keyword    ${USER}

The third test above illustrates that a variable containing a list can be used also as a scalar. In that test the keyword gets the whole list as a single argument.

Starting from Robot Framework 4.0, list expansion can be used in combination with list item access making these usages possible:

1
2
3
4
5
6
7
8
9
*** Test Cases ***
Nested container
    ${nested} =    Evaluate    [['a', 'b', 'c'], {'key': ['x', 'y']}]
    Log Many    @{nested}[0]         # Logs 'a', 'b' and 'c'.
    Log Many    @{nested}[1][key]    # Logs 'x' and 'y'.

Slice
    ${items} =    Create List    first    second    third
    Log Many    @{items}[1:]         # Logs 'second' and  'third'.

Using list variables with other data

It is possible to use list variables with other arguments, including other list variables.

1
2
3
4
5
*** Test Cases ***
Example
    Keyword    @{LIST}    more    args
    Keyword    ${SCALAR}    @{LIST}    constant
    Keyword    @{LIST}    @{ANOTHER}    @{ONE MORE}

Using list variables with settings

List variables can be used only with some of the settings. They can be used in arguments to imported libraries and variable files, but library and variable file names themselves cannot be list variables. Also with setups and teardowns list variable can not be used as the name of the keyword, but can be used in arguments. With tag related settings they can be used freely. Using scalar variables is possible in those places where list variables are not supported.

1
2
3
4
5
6
7
8
*** Settings ***
Library         ExampleLibrary      @{LIB ARGS}    # This works
Library         ${LIBRARY}          @{LIB ARGS}    # This works
Library         @{LIBRARY AND ARGS}                # This does not work
Suite Setup     Some Keyword        @{KW ARGS}     # This works
Suite Setup     ${KEYWORD}          @{KW ARGS}     # This works
Suite Setup     @{KEYWORD AND ARGS}                # This does not work
Test Tags       @{TAGS}                            # This works

Dictionary variable syntax

As discussed above, a variable containing a list can be used as a list variable to pass list items to a keyword as individual arguments. Similarly, a variable containing a Python dictionary or a dictionary-like object can be used as a dictionary variable like &{EXAMPLE}. In practice this means that the dictionary is expanded and individual items are passed as named arguments to the keyword. Assuming that a variable &{USER} has a value {'name': 'robot', 'password': 'secret'}, the first two test cases below are equivalent:

1
2
3
4
5
6
7
8
9
*** Test Cases ***
Constants
    Login    name=robot    password=secret

Dictionary variable
    Login    &{USER}

Dictionary as scalar
    Keyword    ${USER}

The third test above illustrates that a variable containing a dictionary can be used also as a scalar. In that test the keyword gets the whole dictionary as a single argument.

Starting from Robot Framework 4.0, dictionary expansion can be used in combination with dictionary item access making usages like &{nested}[key] possible.

Using dictionary variables with other data

It is possible to use dictionary variables with other arguments, including other dictionary variables. Because named argument syntax requires positional arguments to be before named argument, dictionaries can only be followed by named arguments or other dictionaries.

1
2
3
4
5
*** Test Cases ***
Example
    Keyword    &{DICT}    named=arg
    Keyword    positional    @{LIST}    &{DICT}
    Keyword    &{DICT}    &{ANOTHER}    &{ONE MORE}

Using dictionary variables with settings

Dictionary variables cannot generally be used with settings. The only exception are imports, setups and teardowns where dictionaries can be used as arguments.

1
2
3
*** Settings ***
Library        ExampleLibrary    &{LIB ARGS}
Suite Setup    Some Keyword      &{KW ARGS}     named=arg

Accessing list and dictionary items

It is possible to access items of subscriptable variables, e.g. lists and dictionaries, using special syntax like ${var}[item] or ${var}[nested][item]. Starting from Robot Framework 4.0, it is also possible to use item access together with list expansion and dictionary expansion by using syntax @{var}[item] and &{var}[item], respectively.

Note

Prior to Robot Framework 3.1, the normal item access syntax was @{var}[item] with lists and &{var}[item] with dictionaries. Robot Framework 3.1 introduced the generic ${var}[item] syntax along with some other nice enhancements and the old item access syntax was deprecated in Robot Framework 3.2.

Accessing sequence items

It is possible to access a certain item of a variable containing a sequence (e.g. list, string or bytes) with the syntax ${var}[index], where index is the index of the selected value. Indices start from zero, negative indices can be used to access items from the end, and trying to access an item with too large an index causes an error. Indices are automatically converted to integers, and it is also possible to use variables as indices.

*** Test Cases ***
Positive index
    Login    ${USER}[0]    ${USER}[1]
    Title Should Be    Welcome ${USER}[0]!

Negative index
    Keyword    ${SEQUENCE}[-1]

Index defined as variable
    Keyword    ${SEQUENCE}[${INDEX}]

Sequence item access supports also the same "slice" functionality as Python with syntax like ${var}[1:]. With this syntax, you do not get a single item, but a slice of the original sequence. Same way as with Python, you can specify the start index, the end index, and the step:

*** Test Cases ***
Start index
    Keyword    ${SEQUENCE}[1:]

End index
    Keyword    ${SEQUENCE}[:4]

Start and end
    Keyword    ${SEQUENCE}[2:-1]

Step
    Keyword    ${SEQUENCE}[::2]
    Keyword    ${SEQUENCE}[1:-1:10]

Note

Prior to Robot Framework 3.2, item and slice access was only supported with variables containing lists, tuples, or other objects considered list-like. Nowadays all sequences, including strings and bytes, are supported.

Accessing individual dictionary items

It is possible to access a certain value of a dictionary variable with the syntax ${NAME}[key], where key is the name of the selected value. Keys are considered to be strings, but non-strings keys can be used as variables. Dictionary values accessed in this manner can be used similarly as scalar variables.

If a dictionary is created in Robot Framework data, it is possible to access values also using the attribute access syntax like ${NAME.key}. See the Creating dictionaries section for more details about this syntax.

*** Test Cases ***
Dictionary variable item
    Login    ${USER}[name]    ${USER}[password]
    Title Should Be    Welcome ${USER}[name]!

Key defined as variable
    Log Many    ${DICT}[${KEY}]    ${DICT}[${42}]

Attribute access
    Login    ${USER.name}    ${USER.password}
    Title Should Be    Welcome ${USER.name}!

Nested item access

Also nested subscriptable variables can be accessed using the same item access syntax like ${var}[item1][item2]. This is especially useful when working with JSON data often returned by REST services. For example, if a variable ${DATA} contains [{'id': 1, 'name': 'Robot'}, {'id': 2, 'name': 'Mr. X'}], this tests would pass:

1
2
3
4
*** Test Cases ***
Nested item access
    Should Be Equal    ${DATA}[0][name]    Robot
    Should Be Equal    ${DATA}[1][id]      ${2}

Environment variables

Robot Framework allows using environment variables in the test data using the syntax %{ENV_VAR_NAME}. They are limited to string values. It is possible to specify a default value, that is used if the environment variable does not exists, by separating the variable name and the default value with an equal sign like %{ENV_VAR_NAME=default value}.

Environment variables set in the operating system before the test execution are available during it, and it is possible to create new ones with the keyword Set Environment Variable or delete existing ones with the keyword Delete Environment Variable, both available in the OperatingSystem library. Because environment variables are global, environment variables set in one test case can be used in other test cases executed after it. However, changes to environment variables are not effective after the test execution.

1
2
3
4
5
6
7
*** Test Cases ***
Environment variables
    Log    Current user: %{USER}
    Run    %{JAVA_HOME}${/}javac

Environment variable with default
    Set Port    %{APPLICATION_PORT=8080}

Note

Support for specifying the default value is new in Robot Framework 3.2.

Creating variables

Variables can be created using different approaches discussed in this section:

In addition to this, there are various automatically available built-in variables and also user keyword arguments and FOR loops create variables. In most places where variables are created, it is possible to use variable type conversion to easily create variables with non-string values. An important application for conversions is creating secret variables.

Variable section

The most common source for variables are Variable sections in suite files and resource files. Variable sections are convenient, because they allow creating variables in the same place as the rest of the test data, and the needed syntax is very simple. Their main disadvantage is that variables cannot be created dynamically. If that is a problem, variable files can be used instead.

Creating scalar values

The simplest possible variable assignment is setting a string into a scalar variable. This is done by giving the variable name (including ${}) in the first column of the Variable section and the value in the second one. If the second column is empty, an empty string is set as a value. Also an already defined variable can be used in the value.

1
2
3
4
*** Variables ***
${NAME}         Robot Framework
${VERSION}      2.0
${ROBOT}        ${NAME} ${VERSION}

It is also possible, but not obligatory, to use the equals sign = after the variable name to make assigning variables slightly more explicit.

1
2
3
*** Variables ***
${NAME} =       Robot Framework
${VERSION} =    2.0

If a scalar variable has a long value, it can be split into multiple rows by using the ... syntax. By default rows are concatenated together using a space, but this can be changed by using a separator configuration option after the last value:

1
2
3
4
5
6
7
*** Variables ***
${EXAMPLE}      This value is joined
...             together with a space.
${MULTILINE}    First line.
...             Second line.
...             Third line.
...             separator=\n

The separator option is new in Robot Framework 7.0, but also older versions support configuring the separator. With them the first value can contain a special SEPARATOR marker:

1
2
3
4
5
*** Variables ***
${MULTILINE}    SEPARATOR=\n
...             First line.
...             Second line.
...             Third line.

Both the separator option and the SEPARATOR marker are case-sensitive. Using the separator option is recommended, unless there is a need to support also older versions.

Creating lists

Creating lists is as easy as creating scalar values. Again, the variable name is in the first column of the Variable section and values in the subsequent columns, but this time the variable name must start with @ instead of $. A list can have any number of items, including zero, and items can be split into several rows if needed.

1
2
3
4
5
6
*** Variables ***
@{NAMES}        Matti       Teppo
@{NAMES2}       @{NAMES}    Seppo
@{NOTHING}
@{MANY}         one         two      three      four
...             five        six      seven

Note

As discussed in the List variable syntax section, variables containing lists can be used as scalars like ${NAMES} and by using the list expansion syntax like @{NAMES}.

Creating dictionaries

Dictionaries can be created in the Variable section similarly as lists. The differences are that the name must now start with & and that items need to be created using the name=value syntax or based on existing dictionary variables. If there are multiple items with same name, the last value has precedence. If a name contains a literal equal sign, it can be escaped with a backslash like \=.

1
2
3
4
5
6
*** Variables ***
&{USER 1}       name=Matti    address=xxx         phone=123
&{USER 2}       name=Teppo    address=yyy         phone=456
&{MANY}         first=1       second=${2}         ${3}=third
&{EVEN MORE}    &{MANY}       first=override      empty=
...             =empty        key\=here=value

Note

As discussed in the Dictionary variable syntax section, variables containing dictionaries can be used as scalars like ${USER 1} and by using the dictionary expansion syntax like &{USER 1}.

Unlike with normal Python dictionaries, values of dictionaries created using this syntax can be accessed as attributes, which means that it is possible to use extended variable syntax like ${VAR.key}. This only works if the key is a valid attribute name and does not match any normal attribute Python dictionaries have, though. For example, individual value ${USER}[name] can also be accessed like ${USER.name}, but using ${MANY.3} is not possible.

Tip

With nested dictionaries keys are accessible like ${DATA.nested.key}.

Dictionaries are also ordered. This means that if they are iterated, their items always come in the order they are defined. This can be useful, for example, if dictionaries are used as list variables with FOR loops or otherwise. When a dictionary is used as a list variable, the actual value contains dictionary keys. For example, @{MANY} variable would have a value ['first', 'second', 3].

Creating variable name based on another variable

Starting from Robot Framework 7.0, it is possible to create the variable name dynamically based on another variable:

1
2
3
4
5
6
7
*** Variables ***
${X}        Y
${${X}}     Z    # Name is created based on '${X}'.

*** Test Cases ***
Dynamically created name
    Should Be Equal    ${Y}    Z

Using variable files

Variable files are the most powerful mechanism for creating different kind of variables. It is possible to assign variables to any object using them, and they also enable creating variables dynamically. The variable file syntax and taking variable files into use is explained in section Resource and variable files.

Command line variables

Variables can be set from the command line either individually with the --variable (-v) option or using the aforementioned variable files with the --variablefile (-V) option. Variables set from the command line are globally available for all executed test data files, and they also override possible variables with the same names in the Variable section and in variable files imported in the Setting section.

The syntax for setting individual variables is --variable name:value, where name is the name of the variable without the ${} decoration and value is its value. Several variables can be set by using this option several times.

--variable EXAMPLE:value
--variable HOST:localhost:7272 --variable USER:robot

In the examples above, variables are set so that:

  • ${EXAMPLE} gets value value, and
  • ${HOST} and ${USER} get values localhost:7272 and robot, respectively.

The basic syntax for taking variable files into use from the command line is --variablefile path/to/variables.py and the Taking variable files into use section explains this more thoroughly. What variables actually are created depends on what variables there are in the referenced variable file.

If both variable files and individual variables are given from the command line, the latter have higher priority.

Return values from keywords

Return values from keywords can also be assigned into variables. This allows communication between different keywords even in different libraries by passing created variables forward as arguments to other keywords.

Variables set in this manner are otherwise similar to any other variables, but they are available only in the local scope where they are created. Thus it is not possible, for example, to set a variable like this in one test case and use it in another. This is because, in general, automated test cases should not depend on each other, and accidentally setting a variable that is used elsewhere could cause hard-to-debug errors. If there is a genuine need for setting a variable in one test case and using it in another, it is possible to use the VAR syntax or Set Test/Suite/Global Variable keywords as explained in the subsequent sections.

Assigning scalar variables

Any value returned by a keyword can be assigned to a scalar variable. As illustrated by the example below, the required syntax is very simple:

1
2
3
4
*** Test Cases ***
Returning
    ${x} =    Get X    an argument
    Log    We got ${x}!

In the above example the value returned by the Get X keyword is first set into the variable ${x} and then used by the Log keyword. Having the equals sign = after the name of the assigned variable is not obligatory, but it makes the assignment more explicit. Creating local variables like this works both in test case and user keyword level.

Notice that although a value is assigned to a scalar variable, it can be used as a list variable if it has a list-like value and as a dictionary variable if it has a dictionary-like value.

1
2
3
4
5
*** Test Cases ***
List assigned to scalar variable
    ${list} =    Create List    first    second    third
    Length Should Be    ${list}    3
    Log Many    @{list}

Assigning variable items

Starting from Robot Framework 6.1, when working with variables that support item assignment such as lists or dictionaries, it is possible to set their values by specifying the index or key of the item using the syntax ${var}[item] where the item part can itself contain a variable:

*** Test Cases ***
List item assignment
    ${list} =          Create List      one    two    three    four
    ${list}[0] =       Set Variable     first
    ${list}[${1}] =    Set Variable     second
    ${list}[2:3] =     Create List      third
    ${list}[-1] =      Set Variable     last
    Log Many           @{list}          # Logs 'first', 'second', 'third' and 'last'

Dictionary item assignment
    ${dict} =                Create Dictionary    first_name=unknown
    ${dict}[first_name] =    Set Variable         John
    ${dict}[last_name] =     Set Variable         Doe
    Log                      ${dictionary}        # Logs {'first_name': 'John', 'last_name': 'Doe'}

Creating variable name based on another variable

Starting from Robot Framework 7.0, it is possible to create the name of the assigned variable dynamically based on another variable:

1
2
3
4
5
*** Test Cases ***
Dynamically created name
    ${x} =    Set Variable    y
    ${${x}} =    Set Variable    z    # Name is created based on '${x}'.
    Should Be Equal    ${y}    z

Assigning list variables

If a keyword returns a list or any list-like object, it is possible to assign it to a list variable:

1
2
3
4
5
*** Test Cases ***
Assign to list variable
    @{list} =    Create List    first    second    third
    Length Should Be    ${list}    3
    Log Many    @{list}

Because all Robot Framework variables are stored in the same namespace, there is not much difference between assigning a value to a scalar variable or a list variable. This can be seen by comparing the above example with the earlier example with the List assigned to scalar variable test case. The main differences are that when creating a list variable, Robot Framework automatically verifies that the value is a list or list-like, and the stored variable value will be a new list created from the return value. When assigning to a scalar variable, the return value is not verified and the stored value will be the exact same object that was returned.

Assigning dictionary variables

If a keyword returns a dictionary or any dictionary-like object, it is possible to assign it to a dictionary variable:

1
2
3
4
5
6
*** Test Cases ***
Assign to dictionary variable
    &{dict} =    Create Dictionary    first=1    second=${2}    ${3}=third
    Length Should Be    ${dict}    3
    Do Something    &{dict}
    Log    ${dict.first}

Because all Robot Framework variables are stored in the same namespace, it would also be possible to assign a dictionary into a scalar variable and use it later as a dictionary when needed. There are, however, some concrete benefits in creating a dictionary variable explicitly. First of all, Robot Framework verifies that the returned value is a dictionary or dictionary-like similarly as it verifies that list variables can only get a list-like value.

A bigger benefit is that the value is converted into a special dictionary that is used also when creating dictionaries in the Variable section. Values in these dictionaries can be accessed using attribute access like ${dict.first} in the above example.

Assigning multiple variables

If a keyword returns a list or a list-like object, it is possible to assign individual values into multiple scalar variables or into scalar variables and a list variable.

1
2
3
4
5
6
*** Test Cases ***
Assign multiple
    ${a}    ${b}    ${c} =    Get Three
    ${first}    @{rest} =    Get Three
    @{before}    ${last} =    Get Three
    ${begin}    @{middle}    ${end} =    Get Three

Assuming that the keyword Get Three returns a list [1, 2, 3], the following variables are created:

  • ${a}, ${b} and ${c} with values 1, 2, and 3, respectively.
  • ${first} with value 1, and @{rest} with value [2, 3].
  • @{before} with value [1, 2] and ${last} with value 3.
  • ${begin} with value 1, @{middle} with value [2] and ${end} with value 3.

It is an error if the returned list has more or less values than there are scalar variables to assign. Additionally, only one list variable is allowed and dictionary variables can only be assigned alone.

Automatically logging assigned variable value

To make it easier to understand what happens during execution, the beginning of value that is assigned is automatically logged. The default is to show 200 first characters, but this can be changed by using the --maxassignlength command line option when running tests. If the value is zero or negative, the whole assigned value is hidden.

--maxassignlength 1000
--maxassignlength 0

The reason the value is not logged fully is that it could be really big. If you always want to see a certain value fully, it is possible to use the BuiltIn Log keyword to log it after the assignment.

Note

The --maxassignlength option is new in Robot Framework 5.0.

VAR syntax

Starting from Robot Framework 7.0, it is possible to create variables inside tests and user keywords using the VAR syntax. The VAR marker is case-sensitive and it must be followed by a variable name and value. Other than the mandatory VAR, the overall syntax is mostly the same as when creating variables in the Variable section.

The new syntax aims to make creating variables simpler and more uniform. It is especially indented to replace the BuiltIn keywords Set Variable, Set Local Variable, Set Test Variable, Set Suite Variable and Set Global Variable, but it can be used instead of Catenate, Create List and Create Dictionary as well.

Creating scalar variables

In simple cases scalar variables are created by just giving a variable name and its value. The value can be a hard-coded string or it can itself contain a variable. If the value is long, it is possible to split it into multiple columns and rows. In that case parts are joined together with a space by default, but the separator to use can be specified with the separator configuration option. It is possible to have an optional = after the variable name the same way as when creating variables based on return values from keywords and in the Variable section.

*** Test Cases ***
Scalar examples
     VAR    ${simple}       variable
     VAR    ${equals} =     this works too
     VAR    ${variable}     value contains ${simple}
     VAR    ${sentence}     This is a bit longer variable value
     ...                    that is split into multiple rows.
     ...                    These parts are joined with a space.
     VAR    ${multiline}    This is another longer value.
     ...                    This time there is a custom separator.
     ...                    As the result this becomes a multiline string.
     ...                    separator=\n

Creating lists and dictionaries

List and dictionary variables are created similarly as scalar variables, but the variable names must start with @ and &, respectively. When creating dictionaries, items must be specified using the name=value syntax.

*** Test Cases ***
List examples
     VAR    @{two items}     Robot    Framework
     VAR    @{empty list}
     VAR    @{lot of stuff}
     ...    first item
     ...    second item
     ...    third item
     ...    fourth item
     ...    last item

Dictionary examples
     VAR    &{two items}     name=Robot Framework    url=http://robotframework.org
     VAR    &{empty dict}
     VAR    &{lot of stuff}
     ...    first=1
     ...    second=2
     ...    third=3
     ...    fourth=4
     ...    last=5

Scope

Variables created with the VAR syntax are are available only within the test or user keyword where they are created. That can, however, be altered by using the scope configuration option. Supported values are:

LOCAL
Make the variable available in the current local scope. This is the default.

TEST
Make the variable available within the current test. This includes all keywords called by the test. If used on the suite level, makes the variable available in suite setup and teardown, but not in tests or possible child suites. Prior to Robot Framework 7.2, using this scope on the suite level was an error.

TASK
Alias for TEST that can be used when creating tasks.

SUITE
Make the variable available within the current suite. This includes all subsequent tests in that suite, but not tests in possible child suites.

SUITES
Make the variable available within the current suite and in its child suites. New in Robot Framework 7.1.

GLOBAL
Make the variable available globally. This includes all subsequent keywords and tests.

Although Robot Framework variables are case-insensitive, it is recommended to use capital letters with non-local variable names.

*** Variables ***
${SUITE}         this value is overridden

*** Test Cases ***
Scope example
    VAR    ${local}     local value
    VAR    ${TEST}      test value            scope=TEST
    VAR    ${SUITE}     suite value           scope=SUITE
    VAR    ${SUITES}    nested suite value    scope=SUITES
    VAR    ${GLOBAL}    global value          scope=GLOBAL
    Should Be Equal    ${local}     local value
    Should Be Equal    ${TEST}      test value
    Should Be Equal    ${SUITE}     suite value
    Should Be Equal    ${SUITES}    nested suite value
    Should Be Equal    ${GLOBAL}    global value
    Keyword
    Should Be Equal    ${TEST}      new test value
    Should Be Equal    ${SUITE}     new suite value
    Should Be Equal    ${SUITES}    new nested suite value
    Should Be Equal    ${GLOBAL}    new global value

Scope example, part 2
    Should Be Equal    ${SUITE}     new suite value
    Should Be Equal    ${SUITES}    new nested suite value
    Should Be Equal    ${GLOBAL}    new global value

*** Keywords ***
Keyword
    Should Be Equal    ${TEST}      test value
    Should Be Equal    ${SUITE}     suite value
    Should Be Equal    ${SUITES}    nested suite value
    Should Be Equal    ${GLOBAL}    global value
    VAR    ${TEST}      new ${TEST}      scope=TEST
    VAR    ${SUITE}     new ${SUITE}     scope=SUITE
    VAR    ${SUITES}    new ${SUITES}    scope=SUITES
    VAR    ${GLOBAL}    new ${GLOBAL}    scope=GLOBAL
    Should Be Equal    ${TEST}      new test value
    Should Be Equal    ${SUITE}     new suite value
    Should Be Equal    ${SUITES}    new nested suite value
    Should Be Equal    ${GLOBAL}    new global value

Creating variables conditionally

The VAR syntax works with IF/ELSE structures which makes it easy to create variables conditionally. In simple cases using inline IF can be convenient.

*** Test Cases ***
IF/ELSE example
    IF    "${ENV}" == "devel"
        VAR    ${address}    127.0.0.1
        VAR    ${name}       demo
    ELSE
        VAR    ${address}    192.168.1.42
        VAR    ${name}       robot
    END

Inline IF
    IF    "${ENV}" == "devel"    VAR    ${name}    demo    ELSE    VAR    ${name}    robot

Creating variable name based on another variable

If there is a need, variable name can also be created dynamically based on another variable.

1
2
3
4
5
*** Test Cases ***
Dynamic name
    VAR    ${x}       y    # Normal assignment.
    VAR    ${${x}}    z    # Name created dynamically.
    Should Be Equal    ${y}    z

Set Test/Suite/Global Variable keywords

Note

The VAR syntax is recommended over these keywords when using Robot Framework 7.0 or newer.

The BuiltIn library has keywords Set Test Variable, Set Suite Variable and Set Global Variable which can be used for setting variables dynamically during the test execution. If a variable already exists within the new scope, its value will be overwritten, and otherwise a new variable is created.

Variables set with Set Test Variable keyword are available everywhere within the scope of the currently executed test case. For example, if you set a variable in a user keyword, it is available both in the test case level and also in all other user keywords used in the current test. Other test cases will not see variables set with this keyword. It is an error to call Set Test Variable outside the scope of a test (e.g. in a Suite Setup or Teardown).

Variables set with Set Suite Variable keyword are available everywhere within the scope of the currently executed test suite. Setting variables with this keyword thus has the same effect as creating them using the Variable section in the test data file or importing them from variable files. Other test suites, including possible child test suites, will not see variables set with this keyword.

Variables set with Set Global Variable keyword are globally available in all test cases and suites executed after setting them. Setting variables with this keyword thus has the same effect as creating variables on the command line using the --variable and --variablefile options. Because this keyword can change variables everywhere, it should be used with care.

Note

Set Test/Suite/Global Variable keywords set named variables directly into test, suite or global variable scope and return nothing. On the other hand, another BuiltIn keyword Set Variable sets local variables using return values.

Variable type conversion

Variable values are typically strings, but non-string values are often needed as well. Various ways how to create variables with non-string values has already been discussed:

  • Variable files allow creating any kind of objects.
  • Return values from keywords can contain any objects.
  • Variables can be created based on existing variables that contain non-string values.
  • @{list} and &{dict} syntax allows creating lists and dictionaries natively.

In addition to the above, it is possible to specify the variable type like ${name: int} when creating variables, and the value is converted to the specified type automatically. This is called variable type conversion and how it works in practice is discussed in this section.

Note

Variable type conversion is new in Robot Framework 7.3.

Variable type syntax

The general variable types syntax is ${name: type} in the data and name: type:value on the command line. The space after the colon is mandatory in both cases. Although variable name can in some contexts be created dynamically based on another variable, the type and the type separator must be always specified as literal values.

Variable type conversion supports the same base types that the argument conversion supports with library keywords. For example, ${number: int} means that the value of the variable ${number} is converted to an integer.

Variable type conversion supports also specifying multiple possible types using the union syntax. For example, ${number: int | float} means that the value is first converted to an integer and, if that fails, then to a floating point number.

Also parameterized types are supported. For example, ${numbers: list[int]} means that the value is converted to a list of integers.

The biggest limitations compared to the argument conversion with library keywords is that Enum and TypedDict conversions are not supported and that custom converters cannot be used. These limitations may be lifted in the future versions.

Note

Variable conversion is supported only when variables are created, not when they are used.

Variable conversion in data

In the data variable conversion works when creating variables in the Variable section, with the VAR syntax and based on return values from keywords:

*** Variables ***
${VERSION: float}         7.3
${CRITICAL: list[int]}    [3278, 5368, 5417]

*** Test Cases ***
Variables section
    Should Be Equal    ${VERSION}       ${7.3}
    Should Be Equal    ${CRITICAL}      ${{[3278, 5368, 5417]}}

VAR syntax
    VAR    ${number: int}      42
    Should Be Equal    ${number}    ${42}

Assignment
    # In simple cases the VAR syntax is more convenient.
    ${number: int} =    Set Variable    42
    Should Be Equal    ${number}    ${42}
    # In this case conversion is more useful.
    ${match}    ${version: float} =    Should Match Regexp    RF 7.3    ^RF (\\d+\\.\\d+)$
    Should Be Equal    ${match}      RF 7.3
    Should Be Equal    ${version}    ${7.3}

Note

In addition to the above, variable type conversion works also with user keyword arguments and with FOR loops. See their documentation for more details.

Note

Variable type conversion does not work with Set Test/Suite/Global Variable keywords. The VAR syntax needs to be used instead.

Conversion with @{list} and &{dict} variables

Type conversion works also when creating lists and dictionaries using @{list} and &{dict} syntax. With lists the type is specified like @{name: type} and the type is the type of the list items. With dictionaries the type of the dictionary values can be specified like &{name: type}. If there is a need to specify also the key type, it is possible to use syntax &{name: ktype=vtype}.

1
2
3
4
*** Variables ***
@{NUMBERS: int}           1    2    3    4    5
&{DATES: date}            rc1=2025-05-08    final=2025-05-30
&{PRIORITIES: int=str}    3278=Critical    4173=High    5334=High

An alternative way to create lists and dictionaries is creating ${scalar} variables, using list and dict types, possibly parameterizing them, and giving values as Python list and dictionary literals:

1
2
3
4
*** Variables ***
${NUMBERS: list[int]}            [1, 2, 3, 4, 5]
${DATES: list[date]}             {'rc1': '2025-05-08', 'final': '2025-05-30'}
${PRIORITIES: dict[int, str]}    {3278: 'Critical', 4173: 'High', 5334: 'High'}

Using Python list and dictionary literals can be somewhat complicated especially for non-programmers. The main benefit of this approach is that it supports also nested structures without needing to use temporary values. The following examples create the same ${PAYLOAD} variable using different approaches:

1
2
3
*** Variables ***
@{CHILDREN: int}            2    13    15
&{PAYLOAD: dict}            id=${1}    name=Robot    children=${CHILDREN}
*** Variables ***
${PAYLOAD: dict}            {'id': 1, 'name': 'Robot', 'children': [2, 13, 15]}

Variable conversion on command line

Variable conversion works also with the command line variables that are created using the --variable option. The syntax is name: type:value and, due to the space being mandatory, the whole option value typically needs to be quoted. Following examples demonstrate some possible usages for this functionality:

1
2
3
--variable "ITERATIONS: int:99"
--variable "PAYLOAD: dict:{'id': 1, 'name': 'Robot', 'children': [2, 13, 15]}"
--variable "START_TIME: datetime:now"

Failing conversion

If type conversion fails, there is an error and the variable is not created. Conversion fails if the value cannot be converted to the specified type or if the type itself is not supported:

1
2
3
4
5
6
*** Test Cases ***
Invalid value
    VAR    ${example: int}    invalid

Invalid type
    VAR    ${example: invalid}    123

Secret variables

An important usage for variable type conversion is creating so called secret variables. These variables encapsulate their values so that the real values are not logged even on the trace level when variables are passed between keywords as arguments and return values.

The actual value is available via the value attribute of a secret variable. It is mainly meant to be used by library keywords that accept secret values, but it can be accessed also in the data using the extended variable syntax like ${secret.value}. Accessing the value in the data makes it visible in the log file similarly as if it was a normal variable, so that should only be done for debugging or testing purposes.

Warning

Secret variables do not hide or encrypt their values. The real values are thus available for all code that can access these variables directly or indirectly via Robot Framework APIs.

Note

Secret variables are new in Robot Framework 7.4.

Creating secrets in data

In the data secret variables can be created in the Variable section and by using the VAR syntax. To avoid secret values being visible to everyone who has access to the data, it is not possible to create secret variables using literal values. Instead the value must be created using an existing secret variable or an environment variable like %{NAME}. In both cases joining a secret value with a literal value like %{SECRET}123 is allowed as well.

If showing the secret variable in the data is not an issue, it is possible to use environment variable default values like %{NAME=default}. The name can even be left empty like %{=secret} to always use the default value.

1
2
3
4
5
6
*** Variables ***
${NORMAL: Secret}     ${XXX}          # ${XXX} must itself be a secret variable.
${ENVIRON: Secret}    %{EXAMPLE}      # Environment variables are supported directly.
${DEFAULT: Secret}    %{=robot123}    # Environment variable defaults work as well.
${JOIN: Secret}       ${XXX}-123      # Joining secrets with literals is ok.
${LITERAL: Secret}    robot123        # This fails.

Also list and dictionary variables support secret values:

1
2
3
*** Variables ***
@{LIST: Secret}     ${XXX}    %{EXAMPLE}    %{=robot123}    ${XXX}-123
&{DICT: Secret}     normal=${XXX}    env=%{EXAMPLE}    env_default=%{=robot123}    join=${XXX}-123

Note

The above examples utilize the Variable section, but the syntax to create secret variables is exactly the same when using the VAR syntax.

Creating secrets on command line

Command line variable conversion supports secret values directly:

--variable "PASSWORD: Secret:robot123"

Having the secret value directly visible on the command line history or in continuous integration system logs can be a security risk. One way to mitigate that is using environment variables:

--variable "PASSWORD: Secret:$PASSWORD"

Many systems running tests or tasks also support hiding secret values used on the command line.

Creating secrets programmatically

Secrets can be created programmatically by using the robot.api.types.Secret class. This is most commonly done by libraries and variable files, but also pre-run modifiers and listeners can utilize secrets if needed.

The simplest possible example of the programmatic usage is a variable file:

1
2
3
4
from robot.api.types import Secret

USERNAME = "robot"
PASSWORD = Secret("robot123")

Creating a keyword returning a secret is not much more complicated either:

1
2
3
4
from robot.api.types import Secret

def get_token():
    return Secret("e5805f56-92e1-11f0-a798-8782a78eb4b5")

Note

Both examples above have the actual secret value visible in the code. When working with real secret values, it is typically better to read secrets from environment variables, get them from external systems or generate them randomly.

Built-in variables

Robot Framework provides some built-in variables that are available automatically.

Operating-system variables

Built-in variables related to the operating system ease making the test data operating-system-agnostic.

Variable Explanation
${CURDIR} An absolute path to the directory where the test data file is located. This variable is case-sensitive.
${TEMPDIR} An absolute path to the system temporary directory. In UNIX-like systems this is typically /tmp, and in Windows c:\\Documents and Settings\\<user>\\Local Settings\\Temp.
${EXECDIR} An absolute path to the directory where test execution was started from.
${/} The system directory path separator. / in UNIX-like systems and \ in Windows.
${:} The system path element separator. : in UNIX-like systems and ; in Windows.
${\n} The system line separator. \n in UNIX-like systems and \r\n in Windows.
1
2
3
4
*** Test Cases ***
Example
    Create Binary File    ${CURDIR}${/}input.data    Some text here${\n}on two lines
    Set Environment Variable    CLASSPATH    ${TEMPDIR}${:}${CURDIR}${/}foo.jar

Number variables

The variable syntax can be used for creating both integers and floating point numbers, as illustrated in the example below. This is useful when a keyword expects to get an actual number, and not a string that just looks like a number, as an argument.

1
2
3
4
5
6
7
8
9
*** Test Cases ***
Example 1A
    Connect    example.com    80       # Connect gets two strings as arguments

Example 1B
    Connect    example.com    ${80}    # Connect gets a string and an integer

Example 2
    Do X    ${3.14}    ${-1e-4}        # Do X gets floating point numbers 3.14 and -0.0001

It is possible to create integers also from binary, octal, and hexadecimal values using 0b, 0o and 0x prefixes, respectively. The syntax is case insensitive.

1
2
3
4
5
6
*** Test Cases ***
Example
    Should Be Equal    ${0b1011}    ${11}
    Should Be Equal    ${0o10}      ${8}
    Should Be Equal    ${0xff}      ${255}
    Should Be Equal    ${0B1010}    ${0XA}

Boolean and None/null variables

Also Boolean values and Python None can be created using the variable syntax similarly as numbers.

1
2
3
4
5
6
7
*** Test Cases ***
Boolean
    Set Status    ${true}               # Set Status gets Boolean true as an argument
    Create Y    something   ${false}    # Create Y gets a string and Boolean false

None
    Do XYZ    ${None}                   # Do XYZ gets Python None as an argument

These variables are case-insensitive, so for example ${True} and ${true} are equivalent. Keywords accepting Boolean values typically do automatic argument conversion and handle string values like True and false as expected. In such cases using the variable syntax is not required.

Space and empty variables

It is possible to create spaces and empty strings using variables ${SPACE} and ${EMPTY}, respectively. These variables are useful, for example, when there would otherwise be a need to escape spaces or empty cells with a backslash. If more than one space is needed, it is possible to use the extended variable syntax like ${SPACE * 5}. In the following example, Should Be Equal keyword gets identical arguments, but those using variables are easier to understand than those using backslashes.

*** Test Cases ***
One space
    Should Be Equal    ${SPACE}          \ \

Four spaces
    Should Be Equal    ${SPACE * 4}      \ \ \ \ \

Ten spaces
    Should Be Equal    ${SPACE * 10}     \ \ \ \ \ \ \ \ \ \ \

Quoted space
    Should Be Equal    "${SPACE}"        " "

Quoted spaces
    Should Be Equal    "${SPACE * 2}"    " \ "

Empty
    Should Be Equal    ${EMPTY}          \

There is also an empty list variable @{EMPTY} and an empty dictionary variable &{EMPTY}. Because they have no content, they basically vanish when used somewhere in the test data. They are useful, for example, with test templates when the template keyword is used without arguments or when overriding list or dictionary variables in different scopes. Modifying the value of @{EMPTY} or &{EMPTY} is not possible.

1
2
3
4
5
6
7
8
*** Test Cases ***
Template
    [Template]    Some keyword
    @{EMPTY}

Override
    Set Global Variable    @{LIST}    @{EMPTY}
    Set Suite Variable     &{DICT}    &{EMPTY}

Note

${SPACE} represents the ASCII space (\x20) and other spaces should be specified using the escape sequences like \xA0 (NO-BREAK SPACE) and \u3000 (IDEOGRAPHIC SPACE).

Automatic variables

Some automatic variables can also be used in the test data. These variables can have different values during the test execution and some of them are not even available all the time. Altering the value of these variables does not affect the original values, but some values can be changed dynamically using keywords from the BuiltIn library.

Variable Explanation Available
${TEST NAME} The name of the current test case. Test case
${TEST DOCUMENTATION} The documentation of the current test case. Can be set dynamically using using Set Test Documentation keyword. Test case
@{TEST TAGS} Contains the tags of the current test case in alphabetical order. Can be modified dynamically using Set Tags and Remove Tags keywords. Test case
&{TEST METADATA} The free metadata of the current test case. Can be set dynamically using Set Test Metadata keyword. New in Robot Framework 7.5. Test case
${TEST STATUS} The status of the current test case, either PASS or FAIL. Test teardown
${TEST MESSAGE} The message of the current test case. Test teardown
${PREV TEST NAME} The name of the previous test case, or an empty string if no tests have been executed yet. Everywhere
${PREV TEST STATUS} The status of the previous test case: either PASS, FAIL, or an empty string when no tests have been executed. Everywhere
${PREV TEST MESSAGE} The possible error message of the previous test case. Everywhere
${SUITE NAME} The full name of the current test suite. Everywhere
${SUITE SOURCE} An absolute path to the suite file or directory. Everywhere
${SUITE DOCUMENTATION} The documentation of the current test suite. Can be set dynamically using using Set Suite Documentation Everywhere keyword.
&{SUITE METADATA} The free metadata of the current test suite. Can be set using Set Suite Metadata keyword. Everywhere
${SUITE STATUS} The status of the current test suite, either PASS or FAIL. Suite teardown
${SUITE MESSAGE} The full message of the current test suite, including statistics. Suite teardown
${KEYWORD STATUS} The status of the current keyword, either PASS or FAIL. User keyword teardown
${KEYWORD MESSAGE} The possible error message of the current keyword. User keyword teardown
${LOG LEVEL} Current log level. Everywhere
${OUTPUT DIR} An absolute path to the output directory as a string. Everywhere
${OUTPUT FILE} An absolute path to the output file as a string or a string NONE if the output file is not created. Everywhere
${LOG FILE} An absolute path to the log file as a string or a string NONE if the log file is not created. Everywhere
${REPORT FILE} An absolute path to the report file as a string or a string NONE if the report file is not created. Everywhere
${DEBUG FILE} An absolute path to the debug file as a string or a string NONE if the debug file is not created. Everywhere
&{OPTIONS} A dictionary exposing command line options. The dictionary keys match the command line options and can be accessed both like ${OPTIONS}[key] and ${OPTIONS.key}. Available options:
- ${OPTIONS.exclude} (--exclude) - ${OPTIONS.include} (--include) - ${OPTIONS.skip} (--skip) - ${OPTIONS.skip_on_failure} (--skip-on-failure) - ${OPTIONS.console_width} (integer, --console-width) - ${OPTIONS.rpa} (boolean, --rpa)
${OPTIONS} itself was added in RF 5.0, ${OPTIONS.console_width} in RF 7.1 and ${OPTIONS.rpa} in RF 7.3. More options can be exposed later.
Everywhere

Suite related variables ${SUITE SOURCE}, ${SUITE NAME}, ${SUITE DOCUMENTATION} and &{SUITE METADATA} as well as options related to command line options like ${LOG FILE} and &{OPTIONS} are available already when libraries and variable files are imported. Possible variables in these automatic variables are not yet resolved at the import time, though.

Variable priorities and scopes

Variables coming from different sources have different priorities and are available in different scopes.

Variable priorities

Variables from the command line

Variables set on the command line have the highest priority of all variables that can be set before the actual test execution starts. They override possible variables created in Variable sections in test case files, as well as in resource and variable files imported in the test data.

Individually set variables (--variable option) override the variables set using variable files (--variablefile option). If you specify same individual variable multiple times, the one specified last will override earlier ones. This allows setting default values for variables in a start-up script and overriding them from the command line. Notice, though, that if multiple variable files have same variables, the ones in the file specified first have the highest priority.

Variable section in a test case file

Variables created using the Variable section in a test case file are available for all the test cases in that file. These variables override possible variables with same names in imported resource and variable files.

Variables created in the Variable sections are available in all other sections in the file where they are created. This means that they can be used also in the Setting section, for example, for importing more variables from resource and variable files.

Imported resource and variable files

Variables imported from the resource and variable files have the lowest priority of all variables created in the test data. Variables from resource files and variable files have the same priority. If several resource and/or variable file have same variables, the ones in the file imported first are taken into use.

If a resource file imports resource files or variable files, variables in its own Variable section have a higher priority than variables it imports. All these variables are available for files that import this resource file.

Note that variables imported from resource and variable files are not available in the Variable section of the file that imports them. This is due to the Variable section being processed before the Setting section where the resource files and variable files are imported.

Variables set during test execution

Variables set during the test execution using return values from keywords, VAR syntax or Set Test/Suite/Global Variable keywords always override possible existing variables in the scope where they are set. In a sense they thus have the highest priority, but on the other hand they do not affect variables outside the scope they are defined.

Built-in variables

Built-in variables like ${TEMPDIR} and ${TEST_NAME} have the highest priority of all variables. They cannot be overridden using Variable section or from command line, but even they can be reset during the test execution. An exception to this rule are number variables, which are resolved dynamically if no variable is found otherwise. They can thus be overridden, but that is generally a bad idea. Additionally ${CURDIR} is special because it is replaced already during the test data processing time.

Variable scopes

Depending on where and how they are created, variables can have a global, test suite, test case or local scope.

Global scope

Global variables are available everywhere in the test data. These variables are normally set from the command line with the --variable and --variablefile options, but it is also possible to create new global variables or change the existing ones by using the VAR syntax or the Set Global Variable keyword anywhere in the test data. Additionally also built-in variables are global.

It is recommended to use capital letters with all global variables.

Test suite scope

Variables with the test suite scope are available anywhere in the test suite where they are defined or imported. They can be created in Variable sections, imported from resource and variable files, or set during the test execution using the VAR syntax or the Set Suite Variable keyword.

The test suite scope is not recursive, which means that variables available in a higher-level test suite are not available in lower-level suites. If necessary, resource and variable files can be used for sharing variables.

Since these variables can be considered global in the test suite where they are used, it is recommended to use capital letters also with them.

Test case scope

Variables with the test case scope are visible in a test case and in all user keywords the test uses. Initially there are no variables in this scope, but it is possible to create them by using the VAR syntax or the Set Test Variable keyword anywhere in a test case.

If a variable with the test scope is created in suite setup, the variable is available everywhere within that suite setup as well as in the corresponding suite teardown, but it is not seen by tests or possible child suites. If such a variable is created in a suite teardown, the variable is available only in that teardown.

Also variables in the test case scope are to some extend global. It is thus generally recommended to use capital letters with them too.

Note

Creating variables with the test scope in a suite setup or teardown caused an error prior to Robot Framework 7.2.

Local scope

Test cases and user keywords have a local variable scope that is not seen by other tests or keywords. Local variables can be created using return values from executed keywords and with the VAR syntax, and user keywords also get them as arguments.

It is recommended to use lower-case letters with local variables.

Advanced variable features

Extended variable syntax

Extended variable syntax allows accessing attributes of an object assigned to a variable (for example, ${object.attribute}) and even calling its methods (for example, ${obj.get_name()}).

Extended variable syntax is a powerful feature, but it should be used with care. Accessing attributes is normally not a problem, on the contrary, because one variable containing an object with several attributes is often better than having several variables. On the other hand, calling methods, especially when they are used with arguments, can make the test data pretty complicated to understand. If that happens, it is recommended to move the code into a library.

The most common usages of extended variable syntax are illustrated in the example below. First assume that we have the following variable file and test case:

class MyObject:

    def __init__(self, name):
        self.name = name

    def eat(self, what):
        return f'{self.name} eats {what}'

    def __str__(self):
        return self.name

OBJECT = MyObject('Robot')
DICTIONARY = {1: 'one', 2: 'two', 3: 'three'}
1
2
3
4
5
*** Test Cases ***
Example
    KW 1    ${OBJECT.name}
    KW 2    ${OBJECT.eat('Cucumber')}
    KW 3    ${DICTIONARY[2]}

When this test data is executed, the keywords get the arguments as explained below:

  • KW 1 gets string Robot
  • KW 2 gets string Robot eats Cucumber
  • KW 3 gets string two

The extended variable syntax is evaluated in the following order:

  1. The variable is searched using the full variable name. The extended variable syntax is evaluated only if no matching variable is found.

  2. The name of the base variable is created. The body of the name consists of all the characters after the opening { until the first occurrence of a character that is not an alphanumeric character, an underscore or a space. For example, base variables of ${OBJECT.name} and ${DICTIONARY[2]}) are OBJECT and DICTIONARY, respectively.

  3. A variable matching the base name is searched. If there is no match, an exception is raised and the test case fails.

  4. The expression inside the curly brackets is evaluated as a Python expression, so that the base variable name is replaced with its value. If the evaluation fails because of an invalid syntax or that the queried attribute does not exist, an exception is raised and the test fails.

  5. The whole extended variable is replaced with the value returned from the evaluation.

Many standard Python objects, including strings and numbers, have methods that can be used with the extended variable syntax either explicitly or implicitly. Sometimes this can be really useful and reduce the need for setting temporary variables, but it is also easy to overuse it and create really cryptic test data. Following examples show few pretty good usages.

*** Test Cases ***
String
    VAR    ${string}    abc
    Log    ${string.upper()}      # Logs 'ABC'
    Log    ${string * 2}          # Logs 'abcabc'

Number
    VAR    ${number}    ${-2}
    Log    ${number * 10}         # Logs -20
    Log    ${number.__abs__()}    # Logs 2

Note that even though abs(number) is recommended over number.__abs__() in normal Python code, using ${abs(number)} does not work. This is because the variable name must be in the beginning of the extended syntax. Using __xxx__ methods in the test data like this is already a bit questionable, and it is normally better to move this kind of logic into test libraries.

Extended variable syntax works also in list variable and dictionary variable contexts. If, for example, an object assigned to a variable ${EXTENDED} has an attribute attribute that contains a list as a value, it can be used as a list variable @{EXTENDED.attribute}.

Extended variable assignment

It is possible to set attributes of objects stored to scalar variables using keyword return values and a variation of the extended variable syntax. Assuming we have variable ${OBJECT} from the previous examples, attributes could be set to it like in the example below.

1
2
3
4
*** Test Cases ***
Example
    ${OBJECT.name} =    Set Variable    New name
    ${OBJECT.new_attr} =    Set Variable    New attribute

The extended variable assignment syntax is evaluated using the following rules:

  1. The assigned variable must be a scalar variable and have at least one dot. Otherwise the extended assignment syntax is not used and the variable is assigned normally.

  2. If there exists a variable with the full name (e.g. ${OBJECT.name} in the example above) that variable will be assigned a new value and the extended syntax is not used.

  3. The name of the base variable is created. The body of the name consists of all the characters between the opening ${ and the last dot, for example, OBJECT in ${OBJECT.name} and foo.bar in ${foo.bar.zap}. As the second example illustrates, the base name may contain normal extended variable syntax.

  4. The name of the attribute to set is created by taking all the characters between the last dot and the closing }, for example, name in ${OBJECT.name}. If the name does not start with a letter or underscore and contain only these characters and numbers, the attribute is considered invalid and the extended syntax is not used. A new variable with the full name is created instead.

  5. A variable matching the base name is searched. If no variable is found, the extended syntax is not used and, instead, a new variable is created using the full variable name.

  6. If the found variable is a string or a number, the extended syntax is ignored and a new variable created using the full name. This is done because you cannot add new attributes to Python strings or numbers, and this way the syntax is also less backwards-incompatible.

  7. If all the previous rules match, the attribute is set to the base variable. If setting fails for any reason, an exception is raised and the test fails.

Note

Unlike when assigning variables normally using return values from keywords, changes to variables done using the extended assign syntax are not limited to the current scope. Because no new variable is created but instead the state of an existing variable is changed, all tests and keywords that see that variable will also see the changes.

Variables inside variables

Variables are allowed also inside variables, and when this syntax is used, variables are resolved from the inside out. For example, if you have a variable ${var${x}}, then ${x} is resolved first. If it has the value name, the final value is then the value of the variable ${varname}. There can be several nested variables, but resolving the outermost fails, if any of them does not exist.

In the example below, Do X gets the value ${JOHN HOME} or ${JANE HOME}, depending on if Get Name returns john or jane. If it returns something else, resolving ${${name} HOME} fails.

1
2
3
4
5
6
7
8
*** Variables ***
${JOHN HOME}    /home/john
${JANE HOME}    /home/jane

*** Test Cases ***
Example
    ${name} =    Get Name
    Do X    ${${name} HOME}

Inline Python evaluation

Variable syntax can also be used for evaluating Python expressions. The basic syntax is ${{expression}} i.e. there are double curly braces around the expression. The expression can be any valid Python expression such as ${{1 + 2}} or ${{['a', 'list']}}. Spaces around the expression are allowed, so also ${{ 1 + 2 }} and ${{ ['a', 'list'] }} are valid. In addition to using normal scalar variables, also list variables and dictionary variables support @{{expression}} and &{{expression}} syntax, respectively.

Main usages for this pretty advanced functionality are:

  • Evaluating Python expressions involving Robot Framework's variables (${{len('${var}') > 3}}, ${{$var[0] if $var is not None else None}}).

  • Creating values that are not Python base types (${{decimal.Decimal('0.11')}}, ${{datetime.date(2019, 11, 5)}}).

  • Creating values dynamically (${{random.randint(0, 100)}}, ${{datetime.date.today()}}).

  • Constructing collections, especially nested collections (${{[1, 2, 3, 4]}}, ${{ {'id': 1, 'name': 'Example', 'children': [7, 9]} }}).

  • Accessing constants and other useful attributes in Python modules (${{math.pi}}, ${{platform.system()}}).

This is somewhat similar functionality than the extended variable syntax discussed earlier. As the examples above illustrate, this syntax is even more powerful as it provides access to Python built-ins like len() and modules like math. In addition to being able to use variables like ${var} in the expressions (they are replaced before evaluation), variables are also available using the special $var syntax during evaluation. The whole expression syntax is explained in the Evaluating expressions appendix.

Tip

Instead of creating complicated expressions, it is often better to move the logic into a custom library. That eases maintenance, makes test data easier to understand and can also enhance execution speed.

Note

The inline Python evaluation syntax is new in Robot Framework 3.2.