Debug menu

Menu item Keyboard shortcut Description
Run CTRL+F5 The process starts running. Any messages or output from the process (notification functions, excepting emails) or the Application Engine are shown on the Output tab. To clear the messages on the Output tab, select View > Clear Output Window from the menu. The menu item is only activated when you are in test mode.
Start Debugging F5 The process is executed until the first breakpoint. The execution is paused at the line of the breakpoint. The next statement to execute is highlighted yellow.
Continue F5 The cursor jumps to the next breakpoint. The process is resumed and executed until the next breakpoint.
Step Over F10 The cursor jumps to the next statement, which is highlighted yellow. The highlighted statement is executed and the process pauses before the next statement.
Step Into F11 The cursor jumps to the beginning of the included process. The process pauses at the first statement.
Step Out SHIFT+F11 The process is executed until the place where the function was called.
Stop Debugging SHIFT+F5 Stops the debug mode. This menu item is activated when you start the debug mode.
Add to Watch CTRL+W Adds a variable to watch.
Toggle Breakpoint SHIFT+F9 Enables or disables breakpoint on the line where the cursor is located.
Delete All Breakpoints Removes all defined breakpoints from the process.