Selenium BDD并行运行示例场景

Selenium BDD并行运行示例场景,selenium,junit,bdd,Selenium,Junit,Bdd,假设我们有这样一个故事文件: Scenario: Looking up the definition of a word Given the user does not know the meaning of the word word When the user looks up the definition of the word word Then they should obtain a definition containing the words definition

假设我们有这样一个故事文件:

Scenario: Looking up the definition of a word 
Given the user does not know the meaning of the word word 
When the user looks up the definition of the word word 
Then they should obtain a definition containing the words definition    

Examples: | word              | definition 
          | apple             | A common, round fruit                     
          | banana            | An elongated curved fruit                
          | pear              | An edible fruit produced by the pear tree  
对于每个示例,是否有一种方法可以同时在3个不同的线程中运行此场景?不创建三个不同的故事文件