Log Viewer results significantly delayed

We need more information about your project and problems.

Just a few guesses…

Disabling “Smart Wait” may help:


WebUI.click() is sometimes faulty.
Why not you try clicking the element using JavaScript?


This may occur when you have too many messages from the executed Test Case, eg. by WebUI.comment(msg) or by “Step Execution Log”. You should comment out verbose WebUI.comment() calls as much as possible


You have an alternative way of decreasing Test Cases’ “Step Execution Log” messages.

Katalon Studio would not emit any verbose “Step Execution Log” messages for Keywords. I recommend you to transfer your codes in the Test Cases (Groovy scripts) into the Keywords (Groovy classes). Especially you should transform the codes which are repeatedly executed. Once you have implemented it as Groovy classes, you will replace the original codes in Test Cases with codes that invoke methods of the new Classes. Then the amount of “Step Execution Log” will become less. Less messages will make Log Viewer responsive.