Re-Process successful scenarios for testing

Hello,

I’ve seen a few different approaches to this, but I’m also curious about others.

One option is to rework your scenario and use a Webhook trigger instead of Dropbox Sign.
Then, create a separate Scenario that is triggered by Dropbox Sign followed by an HTTP module to call the Webhook from the original Scenario.
With this, you can use something like Postman, and any data you want, to trigger the Scenario as many times as needed.

Another possible option is described in this post How to test Instant+ACID Trigger with past data? - #3 by Wemakefuture

Another option is to put a router after the trigger, then set variables on the first route.
On the second route, get the variables, then continue the rest of your Scenario. For each variable, use ifempty() to set a default if the variable doesn’t exist.
For production, the trigger will run, follow the first route to set variables, follow next route to get variables, then modules down the line can use the variables.

During testing, disable that first route and start the scenario on the router. This will force the scenario to use the defaults you set up in get variables and run the rest of the scenario. Hope this last one made sense!

3 Likes