Maybe I lied. One last thing…
Yes, correct. And this leads me to strongly suspect your system (computer/OS) AND all other systems in your network where you tried it.
Rhetorical question: where are all the other reports of users with a similar problem?
Something on your computer is messing with you (and Katalon).
p.s. I now no longer think this is a bug in Katalon (moving again).
1 Like
@Russ_Thomas
Hey guys,
Katalon Recorder has started to become very slow and unresponsive when loading my saved test suites. It’s actually gotten to the point where I can’t even load my test suite at all - it just becomes unresponsive and then crashes the browser.
Anything I can do?
Thats the only report that looks like my problem.
This is so sad, i really dont know what to do
Sorry for this issue. Please help us isolate the root cause.
Enable heap memory report
You should see then a small widget on the bottom status bar that shows how much heap memory is being consumed.
Collect Java heap dump
This file will tell us exactly what were stored inside Katalon Studio’s memory.
Download Eclipse MAT.
Unzip, open it, and go to File > Acquire Heap Dump.
Make sure the file path points to a dedicated folder, because several files will be generated. Click Next, and then click Finish.
Then please send us (info@katalon.com ) the *.hprof files.
2 Likes
hello @devalex88 !
thats the heap value when i opened my test case!
i am sorry, i dont know how to use it, but theres not java process i guess?
Hello, guys!
To solve this problem, i have to:
Increase the memory on -Xms (katalon.ini);
Transfer all my variables from “Variables” to a Keyword Class, something like this:
public class MemberConstants {
//form variables
public static final String NAME_SELECTOR = “input.name”;
public static final String SEX_SELECTOR = “span[data-name=sexo]”;
}
Now, i call this variables from the scope, so:
inputReturn = CustomKeywords.‘genericosPessoa.campoInput.inputValue’(MemberConstants.NAME_SELECTOR, MemberConstants.NAME_VALUE);
Now, my IDE is working fine!
Thank you all!
1 Like
Is it “Test Case Variables”? Can I say that if you hadn’t done this step, KS would’ve been not responding?