Hi, The custom keywords created in the enterprise version during trail period is not working in the free version after downgrading the system. Need help in fixing this.
Thanks in advance
Hi @dhamini.sugendran ,
The message says what it means
For now, you would need a license to be able to use custom keywords.
BUT: From what I could read in the forum here Question about missing functionality since 9.x.x - #5 by philipB this feature should be coming back for free in the upcoming new 10.0.0, due for release shortly. So perhaps stay tuned for that version ?
You can use them in the 10.0.0 beta.
https://github.com/katalon-studio/katalon-studio/releases/tag/v10.0.0-obt2
Thank you. Do you have any idea when the beta version will be released?"
Thank you!
Does this link have the setup for beta version?
For this, you just download the correct file for your operating system and unzip it wherever you want to use it. (Somewhere with read/write/execute permissions)
What is your KS version?
you can use Custom keyword like advances feature in KS V8.2.5 without any message with free version
you can use downgraded ks if you can’t upgrade
You can still create groovy / java class inside Folder Include->scripts->groovy->yourpackagename for your CustomKeywords, but you have to change the way you called the methods/functions.
instead of using CustomKeywords.‘package.yourclass.yourfunction()’, you can replace it by :
import yourpackage.YourClass
//calling in static way
YourClass.yourFunction()
//calling in non static way
YourClass yourClass = new YourClass()
yourclass.yourFunction()
this is my suggestion when you want use the free version with Katalon Studio 9.x.x
i also suggest you to use Katalon Studio 8.6.9 version to get CustomKeywords run as usual and can writing code at Keywords folder
I hope this Solutions can help you
Hi there, and thanks for posting in the Katalon community! ![]()
To help you faster, please review our guide on Custom Keyword here: Introduction to custom keywords in Katalon Studio | Katalon Docs. Double-checking the steps and configurations might resolve the issue.
If the doc doesn’t help, feel free to provide more details, and a community member will assist you soon. Thanks for being a part of our community!
Best,
Albert Le

