Repeat a group of scenarios

At the moment I have 4 different scenarios that are executing all together at the same time, scn1, scn2, scn3 and scn4. I know I can use .repeat or .during to create a loop inside of a scenario. What if I want to repeat the scenario or all 4 scenarios? Is it possible?

Why don’t you extract the root chain of your scenarios, so you can recombine them?

ex:
val scn1 = scenario(“1”).foo
val scn2 = scenario(“2”).bar

become

val chain1 = foo
val chain2 = bar
val scn1 = scenario(“1”).exec(foo)
val scn2 = scenario(“1”).exec(bar)

val scnAll = scenario(“All”).exec(foo, bar)