Hello everyone, I’m facing a challenge and would appreciate guidance. Firstly, I’m inquiring about the appropriate place or position in my workflow to use the current queue item when interacting with a website.

Hello everyone, I’m facing a challenge and would appreciate guidance. Firstly, I’m inquiring about the appropriate place or position in my workflow to use the current queue item when interacting with a website.

is there any difference between get transaction item and get Queue Items in my case!!
I mean it doesn’t matter which one I’m using ,it’s the same concept .am I right!! if not please correct me if any one of them is better in my case!
Get transaction item used to change the status as well…to in progress and then once completed you can changed to completed…
If you use get queue items how do you know hwich items are already processed?
Also if you use get transactionitem you can perform get till items are present without using two loop and also items can be marked completed or failed
Cheers
do you mean that if I use Get Transaction Item it will automatically retrieve the items one after one without need to put it into a loop!
You dont need to use the inner loop where you are looping 100
Your flow will be like this
Not IsNothing(Transactionitem) go to step 3 else use breakThats it
Cheers