-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parrallel execution[Question] #1605
Comments
Hi @tomern, you can use BrowserContexts to create parallelized executions in the same browser. See our core concepts guide that attempts to explain it. Let me know if need more details |
Also, #1736 has an example of doing it for multiple browsers as well. Edit:
@arjun27, the two examples in the |
@tomern For the original request here: we're getting ready to release our test runner (please follow #3552) which will support parallel test running and should cover all the needs there. Please keep an eye there!
@nrayburn-tech so far it hasn't been brought many times, so I think the documentation is sufficient here. |
Hi,
I would like to know how can you run playwright tests in parallel on same browser,
I know you can the following in order to run the same tests parallelly on different browsers.
Is there a test runner you can use in order to avoid using Promise.all method?
(async function() {
await Promise.all([
test(firefox),
test(chromium)
]);
})();
The text was updated successfully, but these errors were encountered: