[Q] How do I run the same test on multiple endpoints in multiple environments

Sorry if this is a n00b question but I'm quite new to both Playwright and Synthetics.

I'm writing this test that'll create a case (url #1), send it to a recipient that'll perform additional steps (url #2) and return the case to the creator for verification (url #1). The delay between the steps can be somewhat substantial (minutes).

I'd like to run this test in multiple environments and I'm struggling to figure out how to structure my journeys. Do I use tags? And how do I avoid hardcoding the urls into my journeys?

Thanks in advance :slight_smile:

Think I found the answer myself. Using url1, url2... urln in params definition in synthetics.config.ts combined with the --pattern cli parameter...