Next: , Previous: unload method, Up: MIN2Lua API


6.6.4 sleep method

The sleep functionality is used to pause test case execution for a specified amount of time. As a parameter it takes the time in milliseconds. Example shows 1 second sleep:

     function case_function() -- sleep example
     	min.sleep(1000);
     end