Skip to content

robot.variables.variables

Variables

Variables()

Represents a set of variables.

Contains methods for replacing variables from list, scalars, and strings. On top of ${scalar}, @{list} and &{dict} variables, these methods handle also %{environment} variables.

Source code in src/robot/variables/variables.py
def __init__(self):
    self.store = VariableStore(self)
    self._replacer = VariableReplacer(self)