Search code examples
testingkarate

Karate Run Scenarios in Parallel using Feature File


How do I run tests in Parallel for multiple Scenarios in Karate? Is there an Annotation I can use, within the .feature file?

  | countryISO | 
  | 'USA'      |
  | 'GBR'      | 

Solution

  • Karate will run each row of a Scenario Outline Examples in parallel.

    Are you using the Java API? Refer the docs: https://github.com/karatelabs/karate#parallel-execution

    Results results = Runner.path("classpath:animals").parallel(5);
    

    Or if you are using the command-line, there is a CLI option:

    java -jar karate.jar -T 5 src/animals
    

    Also refer: https://stackoverflow.com/a/60387907/143475