How to Add a Timer Step in an ATF testHow to add a timer step When you want to add a timer step in an Automated Testing Framework (ATF) test, add a new step in 'Run Server Side Script'. The following is an example of adding a timer step to your test script: (function(outputs, steps, params, stepResult, assertEqual) { // add test script here var counter = 0; var timeout = 560; // this is set to 9 minutes. You can change the time according to your requirement. Time is in seconds. while (counter <= timeout){ counter++; sn_atf.AutomatedTestingFramework.waitOneSecond(); } })(outputs, steps, params, stepResult, assertEqual);