Solution to trigger a process as soon as test set completes either on Orchestrator or Test manager

Hi All,

I’m looking for solution where we can trigger a process as soon as test set completes either on Orchestrator or Test manager in UiPath itself rather than using third party tool

@anusha02

Welcome to the community

in the last test case of your test set you can include start job activity

cheers

This would not work, if I re-execute and there might be chances of triggering the start job twice and would want this in dynamic implementation rather than attesting to single test case

1 Like

@anusha02

Unfortunately that much dynamic way is not present as of now

you can control the start job with if condition if needed. that is pass a input argument or change an asset value and depending on that run or dont run that the most possible way for you now

cheers

The simplest way is to create a queue trigger, this will automatically trigger process when queue is added. So you can add a queue item once a test set is completed and keep the queue trigger enabled.

Hi @anusha02

There’s no native “auto-trigger on test set complete” in UiPath. The recommended approach is either:

  • Post-test activity: At the end of your test set, use Start Job to trigger the next process.
  • Monitoring robot: Periodically check test set status via Orchestrator/Test Manager API and start the process when complete.
  • Optional: Use Orchestrator webhooks for job completion events to trigger a robot.