a stringlist in the property step
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007
07:10 AM
05-30-2007
07:10 AM
a stringlist in the property step
Hello,
Is it possible to insert a list of values in the property step.
The reason is: i want to transfer a list of values from one groovy script to another groovy script.
Is it possible to insert a list of values in the property step.
The reason is: i want to transfer a list of values from one groovy script to another groovy script.
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007
07:19 AM
05-30-2007
07:19 AM
Hi,
you can save the list in the context instead.. ie in your first groovy step
context.myList = .. the list..
and in your second groovy step
def theList = context.myList
Hope this helps!
/Ole
eviware.com
you can save the list in the context instead.. ie in your first groovy step
context.myList = .. the list..
and in your second groovy step
def theList = context.myList
Hope this helps!
/Ole
eviware.com
