Create a project with multiple processes to run one after other. If one fails, skip that and proceed further with the next process.

Hi.
You can use queues to store login credentials for all your clients using “Add queue item” in a loop. This will be the first part of the process.

Now with the built-in features of ReFramework you can run your process for every queue item(Client Login) and as you mentioned if any error occurred that particular queue item will be failed hence it will skip that queue item and proceed to next.

Thank you