Actions Trigger Event Delay Setting (Auto Save Delay)

You could introduce a delay to your Action sequence by adding a Run Snippet action at the beginning that delays the execution of actions in the sequence by a fixed amount of time. Here is what such a Snippet would look like: here I’m waiting 5 seconds but you can change that easily:

var SECONDS_TO_DELAY = 5;
var dfd = skuid.$.Deferred();
setTimeout(function(){
dfd.resolve();
},SECONDS_TO_DELAY*1000);
return dfd.promise();