Skip to content

Commit 46ef169

Browse files
Vinyzuadam-ah
andcommitted
[Documentation] Improve ReadMe to better explain Best Practice
Co-Authored-By: Adam H <[email protected]>
1 parent 0ba931e commit 46ef169

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def main():
8080
asyncio.run(main())
8181
```
8282

83-
### Best Practices
83+
### Best Practice - use Chrome without Fingerprint Injection
8484

8585
To be completely undetected, use the following configuration:
8686
```py
@@ -89,10 +89,15 @@ playwright.chromium.launch_persistent_context(
8989
channel="chrome",
9090
headless=False,
9191
no_viewport=True,
92+
# do NOT add custom browser headers or user_agent
9293
...
9394
)
9495
```
9596

97+
> [!NOTE]
98+
> We recommend using Google Chrome instead of Chromium.
99+
> You can install it via `patchright install chrome` (or via any other installation method) and use it with `channel="chrome"`.
100+
96101
---
97102

98103
## Patches

0 commit comments

Comments
 (0)