repeat
Denotes the beginning of a repeat/until loop.
There are no arguments for this action.
None
This action may be used within the following project items: test modules and user-defined actions.
name value
local variable temp count 1
 
repeat
text
report # temp count
 
name value
local variable temp count #temp count+1
 
condition to stop
until #temp count=2
- The built-in action exit loop may be used to escape from a repeat/until loop before its normal termination.