Parallelize more than robot to proceed an execution

Hello All,

We have 3 robots that must do this treatment:
log in in a website “X”
Search for a specific ID, the ID is the same for all items, the user that will be created is unique, for example if the ID is 1 the user that must be created is 1.1 and so on.
create a new user
return to the main page and perform further processing
The problem I have is that sometimes the user is not created correctly (this is a problem with the site that I will try to solve by adding delays), so at one point the three robots search for the ID “1” and they find that no user has been created so the three try to create user 1.1 knowing that the order of users is important
Do you have any ideas for parallelizing the robots correctly?

Best Regards

You might to follow Dispatcher- Performer model to achieve this

Hello,
I have dispatcher that get data from email

And the main process i mentionned before is in performer ,

And the reporter that generate the final report

then while adding items to the queue itself you can add ID right?

Yes ID is one from items column so we have for example three items and the ID is the same
The happy path is that when robot search for ID the first time it should create user =ID_1
2 item → ID_2
3 item → ID_3

Sometimes ID_n is not created correctly so it comes that robots create the same user thats the problem

Can you show your queue item paramaters?