You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Type your instruction in natural language such as: *Set username as John* and a variable `$username` will be created with value John.
64
+
- Type your instruction in natural language such as: *Set username as John* and a variable `{{username}}` will be created with value John.
65
65
66
66
Example:
67
67
```bash
68
68
Set username as John
69
69
```
70
70
71
71
## Using Variables
72
-
To use a previously created variable in any subsequent step or test case, reference the variable using the same `$` syntax. Format: *use the value of `$variableName`*
72
+
To use a previously created variable in any subsequent step or test case, reference the variable using the same `{{` syntax. This will list down all existing variables for this test. Format: *use the value of `{{variableName}}`*
73
73
74
74
Example:
75
75
```bash
76
-
use the value of $phoneNumberin the given text field
76
+
use the value of {{phoneNumber}}in the given text field
0 commit comments