Skip to content

Commit e19aea7

Browse files
authored
docs: do not recommend context for parallel execution (#6659)
1 parent 8d4e616 commit e19aea7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/src/core-concepts.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ maximize what a single instance can do through multiple browser contexts.
7676

7777
A [BrowserContext] is an isolated incognito-alike
7878
session within a browser instance. Browser contexts are fast and cheap to create.
79-
Browser contexts can be used to parallelize isolated test executions.
79+
We recommend running each test scenario in its own new Browser context, so that
80+
the browser state is isolated between the tests.
8081

8182
```js
8283
const browser = await chromium.launch();

0 commit comments

Comments
 (0)