Where are test scenario instances?

postman:


We always test one environment/stage at a time. Since it needs to pass on that stage before it gets deployed to the next one.
So we do a batch run on DEV for Service X. If that passes, we request to deploy the newest on DEV to INT.
Once it is deployed, we do a batch run on INT, and so on…

hmm I think I might have found a workaround in Apidog to achieve this:

  1. You can add a test scenario named let’s say “All profiles test scenarios”.
  2. In that scenario, instead of adding steps you can reference all other test scenarios.
  3. When you run the “All profiles test scenarios” you can select the environment to run it on. And it seems that the environment you select for this “All profiles test scenarios” is overriding the environment setting which is set on each of the referenced test scenarios. But I need to test it more to be sure it works.
    Or can you maybe confirm it with the team that this would work?

the only downside is you have to maintain this “All profiles test scenarios” scenario, since if you add new scenarios as time goes on, those will not be included in it automatically…

Yes that is a solution. This works.

Thanks! :slightly_smiling_face: