Given the following conditional breakpoint, where count = 0:
count = 0
Conditional breakpoint settings:
How many times is UiPath displayed in the Output panel before the process enters a Paused state in Debug mode?
The condition count Mod 2 = 0 is met at count values 0, 2, and 4. The hit count of 3 pauses execution when the condition is met for the third time, at count = 4. UiPath breakpoints pause before the marked activity executes, so the Write Line activity has completed only for count values 0 through 3, producing four Output entries.
count Mod 2 = 0
count
count = 4
Community Discussion