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
- RobotCode tries to resolve variables that are definied at variables section, command line variables and builtin variables. This make it possible to import libraries/resources/variables with the correct path and parameters.
14
+
Something like this:
15
+
16
+
```robotframework
17
+
*** Settings ***
18
+
Resource ${RESOURCE_DIR}/some_settings.resource
19
+
Library alibrary a_param=${LIB_ARG}
20
+
Resource ${RESOURCE_DIR}/some_keywords.resource
21
+
```
22
+
23
+
- If you hover over a variable, you will see, if the variable can be resolved
0 commit comments