Lets say I have four functions in one script: Main, controller, load and inputCredentials.
The Main function is essentially only a loop waiting for new credentials. when it gets the new credentials (through an api) it starts controller function using "call function asynchronously" module. Then the controller calls load and inputCredentials functions.
So, the controller can work asynchronously with the Main function and the async thread will end when the account is created. Is that possible? If not, what is the alternative approach?
Test Script:
test_script.xml