Debugging

Start debugging

  1. Add a breakpoint to an activity by Right Click -> Break

  2. Click the Debug button on the top command bar to execute the workflow in debug mode.

When the activity is in break mode it will display a Break Active indicator. This means the execution is paused on the activity and it is not executed yet.

The debugger pane will show the current activity properties and the user-provided inputs.

  • Property - The activity property name

  • Input - The user input

  • Value - The runtime value of the user input. This value will be known once the activity is executed.

Clicking the Execute button will execute the acitivity and evaluate the input values and write the activity output.

Clicking the Goto Next button will move the execution to the next activity in the workflow.

Using this debugging method you will be able to see the input and out values handled by activities in each step of the workflow.

Last updated