Questions tagged [parallel-execution]

68 questions
1
vote
0 answers

Why the tests are not running in Parallel mode using Selenium C# Unit?

I am trying to run my tests on Parallel mode but it is running sequentially and not parallelly. I found one question link here but the solution provided in the same(Neil and Charlie, both) is also not working for me. Here is my base…
Naseem
  • 911
  • 5
  • 18
  • 48
1
vote
1 answer

SpecFlow+ Runner parallelization on class level

I want to run tests in parallel on class/feature level, my tests are running on scenario/method level, tried to change settings in srprofile, but didn't help. I tried the same project with MSTest runner and works fine, can't figure out what to do…
1
vote
1 answer

Junit 5 tests are not running in parallel

I have created a simple program to intialte crome and one SYSO statement. I want to run the 2 @Test in parallel. But it is executing alwasy is seq. What could be teh reason for it to not recognise the parallel execution? Here is the code: import…
Ayesha Pathan
  • 63
  • 1
  • 8
1
vote
1 answer

Parallel execution is not stopping in JUnit 5 runner for Karate feature files

Karate(version -0.9.4) - There is one single feature file in which there are 4 Scenario Outline is used and If I run this feature file individually then it is working fine. But when the same file is added in a Parallel run, then the parallel…
Dream_hat
  • 51
  • 5
1
vote
0 answers

Executing testsuite testcases parallely using nose2 (unitest/python/testsuite)

How to spawn 5 browser instances parallely for 5 unittest testclasses each containing 4-5 testcases. I have grouped the classes into a testsuite and calling nose2 like below. But its launching the browser instances sequentially. nose2 -s "test-suite…
1
vote
1 answer

Zalenium on kubernetes with 20-30 testcases in Parallel with multiple dynamic machies

I have around 4000 testcases to be executed. I have kubernetes setup for Jenkins, where dynamic machine is created for each job. I have around 50+ jobs and each job has around 2000 to 3000 testcases. How should be setup of zalenium on it. As of…
trupti
  • 11
  • 2
1
vote
2 answers

JMeter - How to run parallel execution with CSV as dataset?

What I am trying to accomplish => Run 50 threads in parallel using a CSV file as the dataset. Here's how the CSV looks like (Let's say there are 50 records): Username,Password user1,password1 user2,password2 ...,... user50, password50 In JMeter,…
1
vote
0 answers

Execute same testsuite in parallel using Junit5

In Junit 5, we can achieve parallel execution by specifying in junit-platform.properties file. Also we can run the same testsuite multiple times by using @TestTemplate but this is sequential run. Is there a way to combine both approaches. I want to…
DRP
  • 11
  • 3
1
vote
0 answers

Parallel Test Execution in Robot Framework |Selenium with Java

how to achieve Parallel Test Execution in Robot Framework which developed using Selenium with java ?
1
vote
1 answer

Is there a way to run pytests using xdist by file(s)?

I am trying to run 2 test files using xdist with 2 gateways (-n=2). Each test file contains tests which are user permission specific. While running the test with pytest and pytest-xdist, I noticed some of the test fail randomly. It is happening…
user3435394
  • 11
  • 1
  • 3
1
vote
0 answers

How to resolve "/wd/hub/session java.io.IOException: org.openqa.grid.common.exception.GridException: Cannot extract a capabilities from the request:"

I'm trying to setup Appium Grid for parallel execution. Appium version (or git revision) that exhibits the issue: 1.13.1 Desktop OS/version used to run Appium: Windows 10 Node.js version (unless using Appium.app|exe): Nodejs Npm or Yarn package…
Thamarai
  • 11
  • 1
1
vote
1 answer

How to execute multiple test suite parallel?

I have test a suite for 5 different stores (UK,US,FR,IN,PT) of a web application. and there are around 250 test cases. After deployment i need execute the test suite for all these store and it takes around 6 hrs for one store. I have to initiate…
NarendraR
  • 7,577
  • 10
  • 44
  • 82
0
votes
0 answers

Parallel execution for multiple tags using cucumber

I want to parallely execute the scenarios groupwise.how can I achieve it in cucumber?like thread 1 should execute only smoke scenario thread 2 should execute regression etc I tried passing different tags in the cucumber options section and increase…
0
votes
1 answer

Cannot run parallel execution in testng due to static WebDriver in the testng framework

I created a framework using testng and used driver as a static variable, but I'm unable to run parallel execution in testng, as I used static to create the driver. Now I want to change the driver to non static, but am confused on how to change the…
0
votes
0 answers

Cucumber : Is it possible to achieve parallel execution of cucumber scenarios with features files executed synchronously

I have multiple feature files which are to be executed synchronously along with that I would like to have parallel execution of scenarios mentioned in these feature files. Any suggestions/feedback is really appreciated. Tried parallel execution as…