Import test from Katalon Studio

According to this post, it is not possible at the moment

However, it is possible to simulate for loops in Recorder using the while...endWhile commands

Command   | Target              | Value      |
storeEval | 5                   | max        |
storeEval | 0                   | counter    |
while     | ${counter} < ${max} |            |
echo      |                     | ${counter} |
storeEval | ${counter}  + 1     | counter    |
endWhile  |                     |            |
1 Like