Problem
Katalon Studio randomly hangs or crashes during normal use. Common symptoms include the application closing itself after a period of activity, Groovy script syntax highlighting disappearing, or the code in Script Mode appearing entirely white (no colors). Crashes become more frequent on later versions and when multiple split tabs or multiple Studio windows are open.
Solution
According to the official troubleshooting page Resolve Katalon Studio Hanging and Crashing, the root cause is a known bug from Groovy Eclipse — the plugin bundled with Katalon Studio — which causes abnormal memory or thread behavior. Katalon documents five workarounds. Apply them in order, restarting Studio between each one until stability returns.
How to
Workaround 1 — Disable “Mark Occurrences”.
The Mark Occurrences feature continuously scans the active file and stresses the Groovy Eclipse engine.
- Open Katalon Studio → Window > Preferences > Java > Editor > Mark Occurrences.
- Uncheck “Mark occurrences of the selected element in the current file”.
- Click Apply and Close, restart Studio.
Workaround 2 — Override the Chromium args in katalon.ini.
- Open
katalon.inifrom the Studio installation folder. - Locate the line starting with
-Dchromium.args=--disable-features=SystemNotificationsand replace it with one of:
or-Dchromium.args=--disable-features=SystemNotifications --disable-gpu --disable-software-rasterizer-Dchromium.args=--disable-features=SystemNotifications --disable-gpu --disable-gpu-compositing --disable-software-rasterizer - Save, restart Studio.
Workaround 3 — Clear workbench state and relaunch with the clean flag.
- Close Katalon Studio completely.
- Delete
workbench.xmiat:[Katalon Studio installation path]\config\.metadata\.plugins\org.eclipse.e4.workbench - Open a terminal in the installation directory and run:
.\katalon.exe -clean -clearPersistedState - Relaunch Studio normally after the command completes.
Workaround 4 — Disable Combined Hover.
- Open Preferences > Java > Editor > Hovers.
- Uncheck Combined Hover.
- Click Apply and Close, restart Studio.
Workaround 5 — Force the SWT Browser to use IE rendering (katalon.ini).
- Close Katalon Studio.
- Open
katalon.iniin the installation folder. - Add these as new lines at the bottom (keep existing entries):
-Dorg.eclipse.swt.browser.DefaultType=ie -Dorg.eclipse.swt.browser.UseDesignMode=false - Save and relaunch Studio.
If issues persist after all five workarounds, the docs note that a full reinstallation may be needed and to ensure you are on the latest patch version.
Outcome
Katalon Studio stays responsive during normal editing, debugging, and test execution. Crashes that occur every few minutes drop to a level where you can do a full day of work without interruption.