2

I have a single test suite (i.e. feature) written with Java/Appium. I want to run this test suite on several different devices (iPhone, Android phones, etc.). I want to do this in parallel as well - i.e. I want to run the same test suite as several separate threads.

How can I do this using Serenity with either Junit, Cucumber, or JBehave? I have found lots of info on how Cucumber allows multiple features to be run in parallel (here and here), but the problem is, I want to run one single feature multiple times in parallel.

Emily
  • 82
  • 1
  • 10

1 Answers1

1

Why not run them in separate jobs on your build server and pass in the device as a parameter?

John Smart
  • 969
  • 1
  • 5
  • 5