Generate Test Scripts in Java

Hi,

I’m new to Katalon. I need to know how to generate test cases in java instead of Groovy.

Just write the scripts in Java instead of Groovy. It should work.

I’m using web recorder. So, where I need to change in settings to generate scripts in java instead of Groovy

nowhere. groovy support plain java code (but java doesn’t understand groovy without importing needed libs).
so, generate the scripts as you like and feel free to complicate them in plain java syntax by manually editing

I don’t think that there’s an option for the web recorder to generate Java code. If you want to do things in Java, you will need to locate/manipulate elements with hand-written code (which is what you should be doing anyway once you are familiar with the tool). Web recording is a handy, beginner-friendly feature, but eventually you will want to write everything yourself anyway. Feel free to implement everything in Java, that’s what I do as well! :slight_smile:

2 Likes