|
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 |
Answered by
mdmintz
Mar 7, 2024
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. |
1 reply
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Have you seen examples/test_repeat_tests.py?
The examples there use
pytest -n NUMfor the multiple processes viapytest-xdist.You can also spin up multiple drivers in the same test. See examples/test_multiple_drivers.py.