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
(fix): debugger now also supports dictionary expressions
given this example:
```robot
*** Variables ***
&{DICTIONARY_EXAMPLE1} output_dir=${OUTPUT DIR}
... AA=${DUT_IP_ADDRESS_1}
... ZZ=${{{1:2, 3:4}}}
```
now you can also evaluate expressions like
```
${DICTIONARY_EXAMPLE1}[output_dir]
```
in the debugger.
0 commit comments