Questions tagged [parallel-testing]
189 questions
1
vote
1 answer
Run Parallel and Sequential tests
I have a setup where few of the tests are written to run in parallel and the rest of them are written to be run sequentially. We are moving from running these tests from run in sequence to run in parallel. Since we cannot move all of these tests at…

startedFromTheBottom
- 95
- 5
- 20
1
vote
0 answers
Selenium Grid DriverSafe tests distribution
I have setup the grid as mentioned in this post. Also, I have the test classes setup as in this post.
Since I wanted each driverInstance to use its own someController and someData, I changed the BaseTest as follows:
public abstract class BaseTest { …

startedFromTheBottom
- 95
- 5
- 20
1
vote
2 answers
Selenium Grid running tests in parallel
Currently, I have a Selenium grid setup, with 1 local hub and 2 local nodes. The hub is capable of distributing the tests to run in parallel and distribute it over to the nodes. I am running the tests in parallel.
The following is the base…

startedFromTheBottom
- 95
- 5
- 20
1
vote
0 answers
How can I run multiple copies of the same test in parallel?
We have a build server that runs any number of builds or test cycles concurrently. Sometimes we get test failures that appear to be caused by different invocations of the same test conflicting with one another.
In a large Scala project with hundreds…

Nick Chammas
- 11,843
- 8
- 56
- 115
1
vote
3 answers
Selenium parallel testing on multiple browsers (JAVA)
I was surprised not to find any intelligent solution how run Selenium webdriver tests using Selenium Grid but running each test with multiple browsers. Preferably I'd like to have some kind of configuration (file, or hard coded) where I can specify…

Manu Koshe
- 11
- 1
- 2
1
vote
1 answer
Run tests in parallel with surefire and testng
I am experimenting how to run tests in parallel with maven surefire and testng. However, the configuration seems not very straightforward and I can't make it work. Below are my dummy tests.
@Log4j
public class DummyTest {
@Test
public void…

JBT
- 8,498
- 18
- 65
- 104
1
vote
1 answer
Running spinach tests in parallel
I am moving from Cucumber to Spinach for BDD on my rails 4 project.
According to parallel-tests documentation on https://github.com/grosser/parallel_tests
it should support spinach
rake parallel:features-spinach # Spinach
but I got that…

Piotr Brudny
- 654
- 4
- 16
1
vote
2 answers
WedDriverException : java.util.HashMap cannot be cast to java.lang.String when initializing RemoteWebDriver
I am trying to run Junit tests in parllel ,did a grid setup with 3 nodes , while executing the test got an exception
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms.
My…

Vigneshwaran
- 475
- 3
- 8
- 15
1
vote
0 answers
Does parallel_test [cucumber] allows user to run iOS tests on multiple machines in parallel?
I have my Frank tests for iOS and they are using cucumber. Is it possible for me to use parallel test to distribute the .feature file to multiple machines using parallels and invoke the tests on multiple iOS simulators on different machine. If yes,…

Vijay
- 878
- 1
- 7
- 21
1
vote
2 answers
why am I getting an empty test suite with parallel_tests ruby gem
Any help getting the gem working would be appreciated. I'm down to configuration issues (i think) and there isn't a lot of documentation to help me get running.
So I have the parallel_tests gem in my project. I believe I have two problems, one…

Matt Westlake
- 3,499
- 7
- 39
- 80
1
vote
1 answer
Can nspec run parallel tests?
I am looking for an Rspec-style tool for C# and have found Nspec.
I will be using it for Webdriver tests via Saucelabds so the ability to run tests in parallel is a key consideration.
Can this be done in Nspec? Currently I use MBunit and this has…

Robbie Wareham
- 3,380
- 1
- 20
- 38
0
votes
0 answers
Scala sbt tests with Junit not running in Parallel
I've some integration tests written in Scala sbt which uses Junit5. I want to run the tests within the suite in parallel, however unable to do so.
This is how my code looks like:
trait IntegrationTestBase extends AnyFunSpec with Matchers with…

Anurag
- 353
- 3
- 15
0
votes
0 answers
Parallet destributed testing using xcuitest in ios
I am trying to develop new XCUITest project and my requirement is to do parallel distributed testing. Such that i have 4 iPhones and 6 classes. Each class should run once and if it is executed then it should not be executed on any other…
0
votes
0 answers
How does fixed parallelism strategy works in Junit5?
dynamic
Computes the desired parallelism based on the number of available processors/cores multiplied by the junit.jupiter.execution.parallel.config.dynamic.factor configuration parameter (defaults to 1).
Here, if the factor is not defined and my…
0
votes
0 answers
In a .NET project how to setup parallel integration tests with xUnit using a single IHost
I'm trying to setup integration tests in .NET using xUnit and a single IHost
Reading the documentation of xUnit I found a way to share context (https://xunit.net/docs/shared-context) between by tests using Class Fixtures and Collection Fixtures, but…

Andre Lucas
- 1
- 1