chore(docs): update section id to keep alphabetic order (#6515)
This commit is contained in:
parent
ab55918979
commit
08ed560254
|
|
@ -1,10 +1,8 @@
|
|||
---
|
||||
id: threading
|
||||
id: multithreading
|
||||
title: "Multithreading"
|
||||
---
|
||||
|
||||
## Multithreading in Playwright Java
|
||||
|
||||
Playwright Java is not thread safe, i.e. all its methods as well as methods on all objects created by it (such as [BrowserContext], [Browser], [Page] etc.) are expected to be called on the same thread where the Playwright object was created or proper synchronization should be implemented to ensure only one thread calls Playwright methods at any given time. Having said that it's okay to create multiple Playwright instances each on its own thread.
|
||||
|
||||
Here is an example where three playwright instances are created each on its own thread. Each instance launches its own browser process and runs the test against it.
|
||||
|
|
|
|||
Loading…
Reference in a new issue