Error in Groovy Script

So I am using Katalon Studio for the automation process for the past 1 month. I found some bugs in it.

Let us assume that I am writing 3 println statements in groovy script… The first 2 statements works fine, it is printing and the result is showing in the Console tab. When the 3rd println statement prints, the first 2 statements gets erased and the third print statement is getting printed…

Hi @ragul.engineer

What version are you using.

I executed the following script on 7.0.0:

println(' Hello')

println(' World')

println(' it\'s me')

and received:

2019-09-20 16:49:05.270 DEBUG testcase.What                            - 1: println(" Hello")
 Hello
2019-09-20 16:49:05.274 DEBUG testcase.What                            - 2: println(" World")
 World
2019-09-20 16:49:05.275 DEBUG testcase.What                            - 3: println(" it's me")
 it's me

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.