Questions tagged [parallel-testing]

189 questions
0
votes
4 answers

Parallel execution of Test using @DataProvider

I'm using testNg for Selenium automation using java, I'm using @DataProvider to get data from excel and pass as an argument to the test Script. Suppose if I have 10 rows of data in Excel, my test case will execute 10 times sequentially, but now I…
0
votes
1 answer

Distributing tests using selenium grid using subprocess approach(plain grid or using jenkins)

I would like to distribute my tests between my local machine and the remote machine. I have 2 tests and would like to run them side by side for faster execution. One on the local machine and the other one is on the remote machine. I have setup my…
user5653362
  • 161
  • 2
  • 15
0
votes
1 answer

Parallel Cucumber Report

I'm trying to get Parallel_Cucumber to save a report once my tests are complete. I've followed the docs and added the following to my cucumber.yml: parallel: --format html --out report<%= ENV['TEST_ENV_NUMBER']%>.html I'm getting no report from…
Tom
  • 1,055
  • 1
  • 14
  • 29
0
votes
3 answers

Cucumber Selenium - parallel browser testing

I have the following feature file : Given I open "google.com" simultaneously in both FF and IE When I type "stackoverflow" and submit Then I should see the desired results How can I run the test on 2 different browsers in parallel ? I know it can…
sanaku
  • 309
  • 2
  • 6
  • 18
0
votes
1 answer

Cannot register node in selenium grid jenkins plugin

Can anybody tell me how to configure selenium grid plugin in Jenkins? I am using appium for parallel execution using JSON. I have created the JSON in the plugin, but am not able to register start appium as nodes.
0
votes
2 answers

Selenium: Run same test on different browsers

I want to run same test on different browsers (Firefox, Chrome and Safari). To do this I am using parametrization in tests. Where in if browser is chrome run chrome and so on. And in testng.xml I have specified to run tests in parallel and repeated…
paul
  • 4,333
  • 16
  • 71
  • 144
0
votes
1 answer

How to execute parallel testing on AVD Android Emulator with Python and Monkeyrunner

I'm executing script test using monkeyrunner on AVD (Android Emulator) sequentially with the code below, and I want to know if it is possible to execute Script Tests in a parallel on all emulators. *listADVtotest is a text file with the names of…
0
votes
1 answer

Parallel test processes within docker container

I'm executing parallel_tests within a docker container, e.g. one host command. parallel_tests will examine the resources, and spawn a process per core, and in my instance I have 8 cores available: # docker info Containers: 5 Images: 75 Storage…
kross
  • 3,627
  • 2
  • 32
  • 60
0
votes
2 answers

Do I need create a session in my code to run parallel tests in Jenkins ?

I am about to run parallel tests on my automation project (I am using Jbehave), but I would like to know if I need create a session management (Thread managements) in my code or if Jenkins can do this for me. Thank you !
0
votes
1 answer

Load balance execution of UI tests (Selenium) on multiple identical app instances (URLs)

I am trying to run UI tests on multiple identical instances of the web application. For example, let's say the identical version of the application is available at 3 places: https://some1.app.com https://some2.app.com https://some3.app.com The…
techjourneyman
  • 1,701
  • 3
  • 33
  • 53
0
votes
1 answer

Zeus returning warning for a parallel rspec tests

I'm trying to make my rails development process faster with zeus. So, I installed zeus & parallel_tests gems. All of them working good, but when I'm trying to connect this to gems via zeus-parallel_tests gem, I get this annoying warnings every…
Alex Antonov
  • 14,134
  • 7
  • 65
  • 142
0
votes
0 answers

parallel_tests - Ruby multiple browser testing

So far I have tried running multiple scenarios using parallel_tests and they are working fine. But the problem with this approach is I need to run multiple times with different browser parameter and I think that this is not a good practice. Right…
Sunilkumar V
  • 912
  • 2
  • 8
  • 28
0
votes
1 answer

Running parallel integration tests in separate working directories

I want to speed up my integration tests by running them in parallel. The configuration in maven-failsafe-plugin enables that, dividing all my tests among a number of parallel test runners, but my application puts various kinds of data in the…
James
  • 947
  • 2
  • 12
  • 20
0
votes
1 answer

Setting separate profiles for Parallel Selenium Tests

I am researching how to set an individual profile using RemoteWebDriver. I have been reading about it on the following…
0
votes
1 answer

Cookies sharing for each firefox driver instance

I have multiple tests that could be run in parallel on a single machine with multiple Firefox drivers. Given that the application will also be writing/reading from cookies, is there any existing solution that deals when it comes to cookies sharing?
1 2 3
12
13