While Step In-Place Editing

To edit a While script step:

  1. Select the step in the Script Steps table.
  2. Edit the step parameters as follows:
    • Session: This column displays no session at all.
    • Return Variable: This step type does not return any variable.
    • Command String: Displays the looping condition.
    • Click into the column and define an expression by editing it in-place.

      Alternatively, click the button and create a valid expression using the Expression Builder GUI, as described in Using the Composer Expression Builder.

Example:

 Assign a 1
 While ($a <10)
    TclEval puts "loop number: $a"
    TclEval incr a
 EndWhile