Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

Table of contents

Expand
titleClick here to expand the table of contents
Table of Contents

...

A cycle is an action, or a group of actions, that are performed either a specified number of times or before a specific event occurs.

...

In this case, the exit condition will be an error when clicking the Next button (when the action does not find an element, it will fail).

...

Usage Tips

  • Don't use eternal loops!

Add a counter to your loops. For example, you need to wait for an element to appear on the page and you have made an eternal loop waiting for it. But at some point, the site changes its structure and your template freezes because it will never wait for the necessary element to appear.

  • Don't loop your templates!

This can lead to all sorts of errors!

...