Is it possible to run Watir test in parallel?
问题 I have simple Watir tests. Each test is self-contained, no shared state or dependency of any kind. Each test open and close the browser. Is it possible to run the test in parallel to reduce the time to run all tests? Even only 2 or 3 tests in parallel can reduce the time dramatically. 回答1: Take a look at parallel_tests Ruby gem. Depending on your setup, running the tests in parallel could be as simple as this: parallel_cucumber features/ 来源: https://stackoverflow.com/questions/19208060/is-it