When I have an automation script that launches another sub automation script, can I pass/return data from my sub script to my 'parent' script? E.g. in case there's an exception in the subscript.
Michiel Vanthuyne [SLC] [DevOps Enabler] Answered question 18th November 2021
If both scripts would need to be started from a visual overview, it is also possible to store the info in session variables by using the "AddScriptOutput" function like this:
engine.AddScriptOutput(UIVariables.VisualOverview.CreateKey("MyOutput"), "myValue");
Michiel Vanthuyne [SLC] [DevOps Enabler] Answered question 18th November 2021