@SuperMario I have no idea how to do this. Could you please send me a sample file?
"Get the list by thread number." I don't quite understand how to do this?
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
@pirkhezr Asynchronous functions and multi-threaded function calls operate independently of the main logic; they do not have shared variables.
To use logic and transfer data within such functions, use global variables, as they can transfer data within functions, which local variables cannot do.