We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ba931e commit 46ef169Copy full SHA for 46ef169
README.md
@@ -80,7 +80,7 @@ async def main():
80
asyncio.run(main())
81
```
82
83
-### Best Practices
+### Best Practice - use Chrome without Fingerprint Injection
84
85
To be completely undetected, use the following configuration:
86
```py
@@ -89,10 +89,15 @@ playwright.chromium.launch_persistent_context(
89
channel="chrome",
90
headless=False,
91
no_viewport=True,
92
+ # do NOT add custom browser headers or user_agent
93
...
94
)
95
96
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
+
101
---
102
103
## Patches
0 commit comments