|
I have a test_stress.py that contains a single function def test_stress(self): Now I want to run it in multiple windows simultaneously. Is there a way to do that? Thank you very much in advance. |
Answered by
mdmintz
Apr 3, 2024
Replies: 1 comment
|
See SeleniumBase/examples/test_repeat_tests.py |
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See SeleniumBase/examples/test_repeat_tests.py
(It uses
pytestmultithreading. Eg:pytest -n6)