The Execution object provides functions to manipulate the current execution.
Pauses the script execution.
Execution.pause(duration);
Execution.pause(5000); //Pauses the execution for five seconds
The effective pause duration may be different (+/- 50 ms) than the given argument due to operating system precision.
Alias of the pause function.
Stops the current execution.
Execution.stop();
The filename of the current script or code file. (string) [Added in Actiona 3.9.2]