The Variable Management view lets you manage all of your automation project's variables, arguments, and imports in one place.
Each variable consists of a variable name, a type, and a scope in which the variable is used. The data stored in a variable is called a value, for example, "Hello World".
Common Variables Types
Type | Description |
---|---|
String | Variable that stores only the character string, but no numeric value. |
Integer | Variable that can represent all integers (for example, 7, 8 or 9, but not 7.5, 8.7, or 9.1) |
Boolean | Variable that allows only two expressions (True and False or True and False). |
Double | Variable that can represent all real numbers (thus also 7.5, 1/3 or 9.1). |