Setting Breakpoints in Your Scripts

To pause a script while it is running, you can set breakpoints at certain points in your script.

Procedure

  1. Open the script you want to pause during its execution and, on the left side of the opened script in the development tools, click the line number where you want the script to pause.

    A blue marker appears that highlights the line number. This indicates that the script will be paused here the next time it is executed.

  2. Optional: Add more breakpoints in the same script to pause the script at different points during its runtime.

Next Steps

To reset a breakpoint, just click on the marker you want to remove and the script's execution won't stop at this point the next time the script runs.