Forum Discussion

tech321's avatar
tech321
Contributor
5 years ago
Solved

How to refer to array created in ScriptSetup?

I have created variables containing data in ScriptSetup at the test suite level. I would like to refer to these variables from a Rest step body. How can I do that. I have tried the following format/syntax and it did not work.

ex:

in the ScriptSetup

variable  = globalDateTimevalue[]

 

in the Rest step body I try:

${globalDateTimevalue[]}

or

${#globalDateTimevalue[]}

 

Thanks a lot in advance.

 

 

 

 

 

 

 

3 Replies

    • tech321's avatar
      tech321
      Contributor

      Thanks , sorry I am not sure I follow here.

      So you mean I could write the array in a property like this:

      context.setProperty("testArray[]", globalDateTimevalue[])  

      and then call it in this way:

      context.testArray[]

      ?

       

    • tech321's avatar
      tech321
      Contributor

      Thanks a lot , I think I forget the "However, this works only if you run whole suite". It works now :)