-
Bug
-
Resolution: Not a bug
-
Low
-
1
-
Severity 3 - Minor
-
Issue Summary
Any variable outside branch (before) is required to access the value of any variable created inside a branch after the branch execution ended.
Steps to Reproduce
- Create a variable inside the branch
- Access the value outside the branch. It's only accessible if any other variable was created before the branch even if it's not used.
Expected Results
Either no variable should be required before the branch, or it should be the same variable that requires to be created before the branch (global context)
Actual Results
If no variable is created before the branch then the variables created inside the branch context cannot be used outside the branch.
Workaround
create any variable before the branch