We are excited to announce that Katalon Studio’s built-in Keywords is now open-source for community contribution. The repository is located at https://github.com/katalon-studio/keywords.
Some documentation is still a work-in-progress, and we are looking forward to your feedback and ideas.
Other components of the Katalon platform will become open-source in the future. Stay tuned!
Thank you all for being a part of the Katalon Community!
I found the Groovy source of keywords but I could not find any unit tests for them. I expected to find unit test on JUnit or Spock, but none.
I can not believe Katalon team has developed those keywords WITHOUT UNIT TESTING. How did you do that?
I do not think I can enhance or do bug fixing for this project because it lacks pre-built unit tests. I would just read the source and understand them, that’s all I can do with it.
I am not satisfied with Katalon Studio in that it does not provide built-in support for developing custom keywords with unit tests backed by JUnit (or better Spock).
I have ever struggled and found a way to do unit testing for custom keywords using JUnit inside Katalon Studio at
Pretty cool ! @kazurayam, I agree: it lacks of unit tests. But the readme page is explicitely asking for demonstrating test-case, validating the new keyword commited. If it’s not enough for debugging, it still is a good guardrail.
Thank you for the feedback. I will follow up with you in the other topic.
Regarding open source Katalon Studio’s current JUnit test cases, there are references to classes in closed source components so we cannot publish them now. But we surely will keep this request in our to-do list.
We need some mechanism which help us resolve the external dependencies automatically and 100% precisely. I quite often dream of a scene where a Katalon Studio project is drastically restructured to be a Gradle project in Eclipse. Gradle provides the state of the art of external dependencies resolution.
Do you mean, for example, com.kms.katalon.core.configuration.RunConfiguration as a closed source component?
Ok, you do not need to distribute them in a source format. You can compile them into binary format and archive into a jar file. Then the keyword project will depend on the katalon-closed-source.jar; that’s all.
Here I assume you have at least 2 distinct source trees — a project for kms-closed-source, and a project for kms-open-source.