Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

I am using Robot Framework with Python and the Browser library. I test a web application. For each test, I create a new browser session, either in the test setup or during the test itself: Open ...
nrameyka's user avatar
-2 votes
1 answer
212 views

My goal is to run tests using 2 projects. I can't provide independence between tests on both projects at the same time, so I need to run tests on one project, then on the 2nd. I tried to make npm ...
Mateusz Puczyłowski's user avatar
1 vote
1 answer
333 views

In a playwright + typescript project, we use the following config line: workers: process.env.CI ? 1 : undefined, The undefined value allows local users to execute faster with X parallel workers on ...
Batou's user avatar
  • 120
0 votes
0 answers
69 views

i am currently trying to enhance our Testautomatisation infrastructure by parallelizing our tests. I know how to do that but I am running into the question of device management. Imagine I have 5 ...
pieljo's user avatar
  • 39
0 votes
1 answer
101 views

I have written cucumber tests with selenium framework. When my test ran in sequential they all pass, but when I run in parallel they fail because the same user is used for all the tests and the test ...
VinnyTech's user avatar
2 votes
0 answers
158 views

TL;DR How to configure my JUnit test suite to run on 5 threads, each using a different datasource? I'm trying to speed up my SpringBoot/JUnit 5 integration tests, which currently take over 40 minutes. ...
Bruno Carneiro's user avatar
0 votes
0 answers
137 views

I have some cucumber tests that can be run in in parallel, and some that can't. I want a way to run them all at once. The only way I can think of doing it is to run the parallel tests first and then ...
Aimee Jones's user avatar
1 vote
0 answers
228 views

I have N number of test cases in my csv file and i have added it as a test template as shown below Test Template My test template *** Test Cases *** sample testcase ${field1} ${field2} ...
Pradeep Kumar Mahendran's user avatar
1 vote
0 answers
297 views

I have multiple feature file each containing multiple scenarios, I want to run scenarios in sequential order and features in parallel, so i tried using package com.api.automation; import org.junit....
akhil reddy's user avatar
0 votes
1 answer
145 views

ISSUE1: I have one variable 'name' which will have some runtime value and i am using this value in classes accross packages and also i can't return this value in method because i am already returning ...
versha's user avatar
  • 1
1 vote
0 answers
610 views

I tried Junit 5.3 parallel execution for Spring Boot (2.7.12) integration tests. junit.jupiter.execution.parallel.enabled = true junit.jupiter.execution.parallel.mode.default = same_thread junit....
MaSEL's user avatar
  • 525
0 votes
2 answers
692 views

I am wondering how to change the database in Laravel parallel test. I changed the database as below but it didn't work. ParallelTesting::setUpTestCase(function (int $token, TestCase $testCase) { $...
Danial Nazari's user avatar
-1 votes
2 answers
5k views

I have a testng.xml like below, <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> <suite name="MyTestSuite" parallel="tests" thread-count="2"&...
Azhagusundaram Tamil's user avatar
0 votes
0 answers
204 views

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 ...
Anurag's user avatar
  • 426
0 votes
0 answers
58 views

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 ...
Prashant Kumar Manjhi's user avatar
2 votes
0 answers
896 views

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 ...
user3259801's user avatar
1 vote
1 answer
923 views

I have a Rails application that is using Sidekiq for asynchronous jobs. I setup parallel testing to speed up my testing pipeline. This is working great but I have one major problem: Redis is ...
LiJinHui's user avatar
0 votes
1 answer
398 views

I am using SpringBootTest 3.0.5, Java 17, Selenium 4.8, Junit-Jupiter 5.9.2 and trying to run tests in parallel. My Config class is: @Component public class WebDriverLibrary { @Bean @...
sritej_kr's user avatar
0 votes
1 answer
336 views

I am implementing parallel testing system using Selenium Grid architecture. I added couple of nodes where each of them have 4 available processors with a hub machine, which has 2 available processors. ...
Ashik's user avatar
  • 106
0 votes
0 answers
553 views

I am trying to run 60 Cypress test cases in parallel in circle Ci but it's running all the 60 test cases on all the 4 machines rather than dividing the test cases and running them in parallel in all ...
Noob_QA's user avatar
0 votes
1 answer
1k views

I am trying to write functionality that will take a screenshot of my browser in case a test fails. What I care about: take a screenshot and add it to the Allure2 report. tests must be run in parallel....
FlappyCat's user avatar
1 vote
1 answer
188 views

I have both Android App which act as receiver for heart rate from Android Watch and app for Wear OS, which sent heart rate to the app. For test without my hardware, i created two emulators and paired ...
AShX's user avatar
  • 432
2 votes
1 answer
4k views

So I have around 45 spec files that I want to execute in parallel on a single machine on Jenkins. If I create a freestyle job on Jenkins and run this command "npx cypress run --record --key abc --...
Areesha Altaf's user avatar
1 vote
0 answers
1k views

I have selenium tests developed on java. Since devs are using Azure Devops, we are asked to use it for the test pipelines. We have configured one project on one pipeline. Classic pipelines are used, ...
Ricky's user avatar
  • 93
1 vote
1 answer
6k views

i am having an issue to understand how can i run all the unit tests in my boot spring application(kotlin) in parallel while the springBootTests and the dataJpaTests will run one after the other(...
sigal notovich's user avatar
1 vote
1 answer
1k views

I'm working on a cypress test execution on Github actions and I need to know whether there is a way to execute the tests in parallel mode without using the cypress dashboard (Open source solution) ...
ThimiraR's user avatar
  • 197
0 votes
0 answers
489 views

Running a simple login automation test using Capybara. No database is used. I am trying to use parallel_test gem to invoke multiple test sessions at the same time (chrome browser) using the following ...
user3636388's user avatar
0 votes
1 answer
1k views

I am working on the tests for an app and just now got beyond 50 tests, which means the parallel testing kicked in. With it I currently get error messages telling me ActiveRecord::...
SEJU's user avatar
  • 1,175
0 votes
0 answers
307 views

How to run the below code parallely for multiple browsers. Secondly, timer.cancel not working and is there a way we could stop the timer command if there is any change in the web page. class ...
Karan2404's user avatar
3 votes
1 answer
3k views

I need to run my tests on a single machine. The project has more than 50 tests (spec files). Is it possible to achieve this via Jenkins configuration?
jayashree r's user avatar
2 votes
0 answers
261 views

I'm trying to enable parallelization of tests in my rails app, but for some reason one of the test breaks as soon as I enable it: ERROR["test_convert_to_letter", Minitest::Result, 1....
jasir guzman's user avatar
0 votes
1 answer
1k views

My app is a Laravel app and I am wanting to leverage paratest to generate my code coverage reports. My tests run fine in parallel using: php artisan test --parallel I couldn't see a way to use the ...
Zakalwe's user avatar
  • 1,662
0 votes
3 answers
1k views

I am trying to run my tests in parallel with Maven by using 2 xml files but it doesn't seem to work. I have tried the steps/parameters from the Maven documentation: http://maven.apache.org/surefire/...
vladys2019's user avatar
0 votes
0 answers
98 views

I'm using gopter for property testing and I'm interested in speeding up my test runs by running independent tests in parallel. I can't find any reference in the documentation as to whether it's safe ...
Bevan's user avatar
  • 44.4k
7 votes
2 answers
8k views

I am trying to make parallel tests using rspec and rails 6. According to their documentation, it is just required to add PARALLEL_WORKERS=15 where 15 is the number of workers. However, this works for ...
Andrès Mauricio Peña Carmona's user avatar
1 vote
0 answers
323 views

When executing tests separately I have added this functions to make sure sqlite db would be created if it's not there: abstract class TestCase extends BaseTestCase { use CreatesApplication, ...
mirza's user avatar
  • 5,821
2 votes
0 answers
418 views

I created a xunit project and added specflow with Gherkin and selenium web drivers to the project. I've following StepDefinition file, [Binding] public class MyPageStepDefinition { private ...
Nandini's user avatar
  • 21
0 votes
1 answer
527 views

I am new to parallel testing with Java and TestNG. Here is what the syxtax of my testng.xml file looks... <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name=&...
spartan117's user avatar
1 vote
0 answers
591 views

I am trying to execute parallel testing in tow test cases(methods) in two same browsers. But when I run, it opens two same browsers but the execution is performed in one browser, means two test ...
Raj's user avatar
  • 11
1 vote
0 answers
158 views

I am new to parallel testing (I am using java selenium with TestNG as my project framework). when I launch parallel testing using my pom.xml file I can see that browsers opened for me but the logic is ...
automation stack's user avatar
1 vote
0 answers
180 views

I built an automation framewoek using maven, java, testng, selenium. As for now I am running my tests sequential and I would like to run them in parallel, however each time I try to run them in ...
tupac shakur's user avatar
0 votes
0 answers
366 views

I try to run my tests with jUnit5 annotation @ParametrizedTest in parallel execution, but it's not work. public class Simple { @Inject private WebSteps WebSteps; @Inject private DbSteps dbSteps; ...
grav's user avatar
  • 11
0 votes
1 answer
219 views

for example: testing.xml <suite name="name" parallel="methods" thread-count="5"> <test> ... </test> </suite> case #1: when I run the ...
George Salinas's user avatar
0 votes
0 answers
1k views

My requirement is to run a single rspec file at the end of the suite after all the other rspecs are run. Since the spec - specA - is changed when other tests are run in parallel with it. I have tried -...
Gowthaman Ravindran's user avatar
1 vote
1 answer
1k views

I have 3 test classes consisting of multiple test methods that I want to run in parallel. I'm using ThreadLocal for isolating webdriver instances per thread. When I run the tests in sequential manner ...
Nilamber Singh's user avatar
1 vote
0 answers
584 views

When I try to execute test case as parallely inside serenity bdd projects with mvn clean test commands <build> <plugins> <plugin> <...
Süleyman Aktaş's user avatar
1 vote
1 answer
3k views

Recently I have tried running the build test on my self hosted GitHub runners. One thing I know that it runs in its isolated virtual environment and destroys the environment at the end of the ...
iot things's user avatar
3 votes
2 answers
2k views

I have a relatively simple method to wait until an element exists and is displayed. The method handles the situation where more than a single element is returned for the given By (usually we only ...
Ory Zaidenvorm's user avatar
0 votes
1 answer
165 views

As far as I know, using unittest in Python is done something like this - # test.py import unittest import math from my_math import do_math class test_do(unittest.TestCase): def test_first_case(...
Anirudh Rowjee's user avatar
1 vote
1 answer
458 views

apologies as this is a really basic problem, but Im really struggling with the basics of this concept. I have created a public static class to set a browser private static ThreadLocal<WebDriver> ...
Mellissa's user avatar
  • 138