Debug while playing test case?

0
Hello, we have built several large test cases and it fails every time at the last few steps. To find out if our fix works, we have to play the entire test case again. We use Browserstack as our selenium provider. Is it possible to debug while playing a test case?
asked
2 answers
2

In addition to Jordy, if you have 1 specific case you want to test of those cases. You can enable debugging and add "Breakpoint conditions"  so the debugger will only be triggerded based on some conditions. To do this, rightclick in a microflow on an action activity and select "Edit breakpoint conditions". 

answered
1

I think you can hook up your debugger at one of the environments and it should just trigger a breakpoint whenever selenium executes an action, but I think selenium will try to continue the test script whenever you are blocking the actions with your debugger so maybe you could use something like a blocking progess bar in order to stop this?

answered