Forum Discussion
SiKing
12 years agoCommunity Expert
Works for me dude.
I don't understand:
println sends stuff to standard output. To get stuff to go to the SoapUI Log Output, try:
You could also try:
I don't understand:
jsolano wrote: println "PATH: " + groovyUtils.projectPath
In the soapui console I only see: "PATH: ", as if the projectPath was an empty string.
println sends stuff to standard output. To get stuff to go to the SoapUI Log Output, try:
log.info groovyUtils.projectPath
You could also try:
log.info context.expand('${projectDir}')