1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
+1 vote
141 views
by michael-h-5027 (14.8k points)

1 Answer

+1 vote
 
Best answer

for (var i=0 ; i < 10 ; i++) {
   if (qie.notInTestWindow() && qie.isChannelStopped(true)) {
      throw 'Aborting because channel is stopped!';
   }
   qie.info('instance ('+i+')');
   qie.pause(2000);
}

by michael-h-5027 (14.8k points)
selected by nathan-c-4426
...