-
Hi Michael, Seleniumbase has the "-n" option to run test cases much faster, but is there another option to run test case for parallel testing, just like pytest-parallel? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Have you seen examples/test_repeat_tests.py? The examples there use You can also spin up multiple drivers in the same test. See examples/test_multiple_drivers.py. |
Beta Was this translation helpful? Give feedback.
Have you seen examples/test_repeat_tests.py?
The examples there use
pytest -n NUM
for the multiple processes viapytest-xdist
.You can also spin up multiple drivers in the same test. See examples/test_multiple_drivers.py.