Keep browser open after test failed?

Hello,

Is there an option in Katalon to tell test case to keep the browser opened even after tests case fails? This is purely for testing and debugging purposes.

Best regards
Ismar

If you go to Project Settings > Execution > Default you can check/uncheck “Terminate drivers after each Test Case”.

Then, if the last line of the script is WebUI.closeBrowser(), it will execute only if all other steps are passed, so the browser remains open for debugging if needed.

You are right. I forgot that I checked that option. When I uncheck it I get what I want

Thank you