I have a simple workflow on a button inside a Table Element (still under BETA) that:
- Clears a list of text items.
- Then adds 1 new text item.
When run in Real Time the list clears, then reappears with the new item added.
When I run it in Step Time the list clears properly as it should.
I figured that the ‘clear list’ was not able to complete its task before the the ‘add new item’ kicked in.
So I added a ‘Pause before next action’ of 0.1 ms after the ‘clear list’ but before the ‘add item’. It worked.
Why is this pause needed? Maybe because there is an inherent ‘animation fade’ on the button which causes the ‘clear list’ to not be completed in real time. (I’ll test that by removing the animation).
I have found this before and cured it in the same way.
A bit granular but it may help folk who have a similar problem.
(UPDATE)
I tested removing the inherent animation and then removed the 0.1ms Pause but this didn’t work.
So currently the ‘Pause before next action’ is still needed.