--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId> <!-- http://maven.apache.org/surefire/maven-failsafe-plugin/ -->
<version>2.18.1</version>
<configuration>
<includes>
<include>**/*Test.java</include>
<!-- <include>**/Test*.java</include>
<include>**/When*.java</include> -->
</includes>
<!-- <argLine>-Xmx512m</argLine> -->
<!-- https://weblogs.java.net/blog/johnsmart/archive/2010/07/06/running-junit-tests-parallel-maven , http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html -->
<parallel>methods</parallel>
<!-- <threadCount>1</threadCount> -->
<threadCountMethods>1</threadCountMethods>
<!-- <percorethreadcount>false</percorethreadcount> -->
<useunlimitedthreads>false</useunlimitedthreads>
<!-- <forkCount>3</forkCount>
<reuseForks>true</reuseForks> -->
<systemPropertyVariables>
<webdriver.driver>${webdriver.driver}</webdriver.driver>
</systemPropertyVariables>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
But it spawns more than 10+ browsers , how can I control to spawn only X number of browsers ? I have single class with multiple test cases. I tried reading https://maven.apache.org/surefire/maven-failsafe-plugin/examples/fork-options-and-parallel-execution.html but couldn't find the answers
Thanks in advance.
Regards,
Vikram
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <!-- http://maven.apache.org/surefire/maven-surefire-plugin/ -->
<version>2.18.1</version>
<configuration>
<parallel>classes</parallel>
<threadCount>1</threadCount>
--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Harry
Thanks & Regards,
Yek.