I am Working on Testing with Synthetic Data. In this process will create and add test data into Testing Queues in Orchestrator.
Watch the below images.
How to loop this type of variable?

I am Working on Testing with Synthetic Data. In this process will create and add test data into Testing Queues in Orchestrator.
Watch the below images.
@Soundarya_Guduri output of “Get Test Data Queue Items” is Dictionary
so change argument type of loop to dictionary( Dictionary (String, Object))
@Soundarya_Guduri No problem put that datatype in loop argument as well and see what its giving.
Go loop properties and change argument type to system.collections.Generic<List.Testing.Core.TestDataQueueItem>
This video show how to fetch data from a single TestqueueItem(GetTestQueueItem).
not for -->GetTestDataQueueItems
You values in list->Dictionary
Output is a List(Of TestDataQueueItem)
We would recommend to further inspect the TestDataQueueItem from the output within one of the debug panels:
Understanding the 6 Debugging Panels of UiPath in the easiest way possible! - News / Tutorials - UiPath Community Forum
and do some prototypings like
myGetTestDataQueueItemsOut.First().Content
myGetTestDataQueueItemsOut.First().Content.Keys
myGetTestDataQueueItemsOut.First().Content(yourKey)
myGetTestDataQueueItemsOut.First().Content(yourKey)
using this expression it only fetching 1st one .
We just asked you to prototype it within the immedediate panel
But now, as the retrieval is working you have explored that with .Content(YourKey) you can access and retrieve