Groovy Error: Unable to resolve class internal.GlobalVariable

Bump

2 Likes

We are looking into this issue, please be patient. Can you guys provide some logs? Are there any reproducible steps I can try?

1 Like

Hi all,

Iā€™ve reproduced it, we will try to figure out root causes and fix it in the next release. Thanks for all of your information.

Regards

4 Likes

Hi all,

This issue has been fixed. We will include it in the next release shortly :slight_smile:

Regards

5 Likes

Thanks for this awesome product guys. I really enjoy using it. Can you please give a definition of ā€œshortlyā€ :slight_smile: ?

1 Like

We expected to deliver it next week :slight_smile:

Regards

9 Likes

thank you guys, youā€™re doing a great job!

2 Likes

HI Katalonā€¦sorry to askā€¦our project is down due to this errorā€¦when will 5.5 be released?

randomly getting this error on test executions run from docker container

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:

/katalon/katalon/project/Libs/TempTestSuite1530529577793.groovy: 14: unable to resolve class internal.GlobalVariable

@ line 14, column 1.

import internal.GlobalVariable as GlobalVariable

^

1 error

1 Like

^^^ Iā€™m in the same boat.

1 Like

Is the new version out ?
Any estimated date yet ?

1 Like

Can you please provide release date or workaround.

2 Likes

Hi,
I wrote a simple function for bash script as a temporary workaround. Works for me.
You can use it in your script as `katalon_docker &` if you want your script to continue execution.

function katalon_docker () {

katalon_bug=1

while [ $katalon_bug -eq 1 ]; do

echo ā€œAttempt to start Katalon test at `date`ā€ | tee -a $REPORTDIR/script-output.log

docker run --rm -v $PROJECTDIR:/katalon/katalon/source:ro -v $REPORTDIR:/katalon/katalon/report -e KATALON_OPTS="$katalonl_opts" katalonstudio/katalon &> $REPORTDIR/docker-output.log

sleep 35s

if grep -q ā€œunable to resolve class internal.GlobalVariableā€ $REPORTDIR/docker-output.log ;

then katalon_bug=1

else katalon_bug=0

fi

done

}

2 Likes

It is also possible to use previous Katalon Studio version 5.4.1 which is inside the container with 1.2.0 tag, or you can build you own container using this commit https://github.com/katalon-studio/docker-images/tree/d535b71bdead34d0a3995c8effddcaaa2ab04dc4

Google Chrome 66.0.3359.139
Mozilla Firefox 59.0.2
Katalon Studio 5.4.1

docker run --rm -v $PROJECTDIR:/katalon/katalon/source:ro -v $REPORTDIR:/katalon/katalon/report -e KATALON_OPTS="$katalon_opts" katalonstudio/katalon:1.2.0

boreos said:

Hi,
I wrote a simple function for bash script as a temporary workaround. Works for me.
You can use it in your script as `katalon_docker &` if you want your script to continue execution.

function katalon_docker () {

katalon_bug=1

while [ $katalon_bug -eq 1 ]; do

echo ā€œAttempt to start Katalon test at `date`ā€ | tee -a $REPORTDIR/script-output.log

docker run --rm -v $PROJECTDIR:/katalon/katalon/source:ro -v $REPORTDIR:/katalon/katalon/report -e KATALON_OPTS=ā€œ$katalonl_optsā€ katalonstudio/katalon &> $REPORTDIR/docker-output.log

sleep 35s

if grep -q ā€œunable to resolve class internal.GlobalVariableā€ $REPORTDIR/docker-output.log ;

then katalon_bug=1

else katalon_bug=0

fi

done

}

This helped resolve my issue, thanks boreos.

This seems to be fixed in v5.5 beta.

Good work, Katalon Team!

1 Like

Hi Mate,

thatā€™s great!! Itā€™s possible to download the 5.5 beta somewhere?

Currently Iā€™m facing the same issue rearding GlobalVariables.

Thx in advance

http://forum.katalon.com/discussion/7746/katalon-studio-v5-5-beta-release-announcement#latest

1 Like


But there is no download link for Linux CLI version.

Great!! Thx. :slight_smile:

Iā€™m still getting the same issue in the 5.5. Beta release, Windows 10 64-bit version after running in console mode.

See my comment in http://forum.katalon.com/discussion/7746/katalon-studio-v5-5-beta-release-announcement#latest

1 Like