Have 2 feature files Abc.feature and xyz.feature to run them paralley below is the configuration have done.
However when running tests through command prompt using below command 2 browser window does not open
mvn verify -Denvironment=dev
Can anyone suggest what is missing here?..
mvn verify -Denvironment=dev
POM.XML
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M7</version>
<executions>
<execution>
<goals>
<goal>E2ETest</goal>
<goal>verify</goal>
</goals>
<configuration>
<includes>
<include>**/TestRunner.java</include>
</includes>
<parallel>methods</parallel>
<threadCount>4</threadCount>
<perCoreTgreadCount>true</perCoreTgreadCount>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<systemPropertyVariables>
<!--suppress UnresolvedMavenProperty ->
<environment.code>${environment}</environment.code>
</systemPropertyVariables>
<includes>
<include>**/TestRunner.java</include>
</includes>
</configuration>
</plugin>