Hi.
In java language its posisble to instantiate arrays immediately with values on the same line using the {} format: For example, I tried this…
String[] test = new String[] {"a", "b", "c"}
But when I try it in Katalon I get an error
Is there a way around this or is it a limitation of Groovy and I just have to set each value of the String individually, ex… test[0] = “a”, etc. ?
Thanks.
Ilya