Skip to main content

Undetected Python version of the Playwright testing and automation library.

Project description

🎭 Patchright Python


Patchright Version GitHub Downloads (all assets, all releases)

Patchright is a patched and undetected version of the Playwright Testing and Automation Framework.
It can be used as a drop-in replacement for Playwright.

[!NOTE]
This repository serves the Patchright-Python Package. To use Patchright with NodeJS, check out the NodeJS Package. Also check out the main Patchright Driver Repository


Sponsors

Hyperbrowser Banner Ad
If you’re looking for a high-performance browser automation platform checkout Hyperbrowser. It’s ideal for AI Agents, large-scale web scraping and automated testing.
Hyperbrowser delivers cloud-based browser infrastructure that scales instantly from a few sessions to thousands, with built-in CAPTCHA solving, stealth fingerprinting, and a global proxy network. It integrates seamlessly with Puppeteer, Playwright, and Selenium, so you can be up and running in minutes, no server or proxy management required.

Key Features:

  • Instant scaling: Launch 1,000+ concurrent browsers
  • Captcha Solving: Handles reCAPTCHA, Cloudflare, AWS, and more
  • Stealth mode: Dynamic, human-like fingerprints for undetectable automation
  • Global proxy network: 170+ countries with rotation and geo-targeting
  • Built-in debugging: Live view and session replay for real-time monitoring
  • 1-line integration: Works with Puppeteer, Playwright, Selenium in Node.js or Python

👉 Learn more at hyperbrowser.ai


Thordata Banner

Thordata - Your First Plan is on Us! 💰Get 100% of your first residential proxy purchase back as wallet balance, up to $900.

⚡ Why Thordata?

🌍 190+ real residential & ISP IP locations
🔐 Fully encrypted, ultra-secure connections
🚀 Optimized for web scraping, ad verification & automation workflows

🔥Don’t wait — this is your best time to start with Thordata and experience the safest, fastest proxy network.


Install it from PyPI

# Install Patchright with Pip from PyPI
pip install patchright
# Install Chromium-Driver for Patchright
patchright install chromium

Usage

Just change the import and use it like playwright. Patchright is a drop-in-replacement for Playwright!

[!IMPORTANT]
Patchright only patches CHROMIUM based browsers. Firefox and Webkit are not supported.

# patchright here!
from patchright.sync_api import sync_playwright

with sync_playwright() as p:
    browser = p.chromium.launch()
    page = browser.new_page()
    page.goto('http://playwright.dev')
    page.screenshot(path=f'example-{p.chromium.name}.png')
    browser.close()
import asyncio
# patchright here!
from patchright.async_api import async_playwright

async def main():
    async with async_playwright() as p:
        browser = await p.chromium.launch()
        page = await browser.new_page()
        await page.goto('http://playwright.dev')
        await page.screenshot(path=f'example-{p.chromium.name}.png')
        await browser.close()

asyncio.run(main())

Best Practice - use Chrome without Fingerprint Injection

To be completely undetected, use the following configuration:

playwright.chromium.launch_persistent_context(
    user_data_dir="...",
    channel="chrome",
    headless=False,
    no_viewport=True,
    # do NOT add custom browser headers or user_agent
    ...
)

[!NOTE]
We recommend using Google Chrome instead of Chromium. You can install it via patchright install chrome (or via any other installation method) and use it with channel="chrome".


Patches

Runtime.enable Leak

This is the biggest Patch Patchright uses. To avoid detection by this leak, patchright avoids using Runtime.enable by executing Javascript in (isolated) ExecutionContexts.

Console.enable Leak

Patchright patches this leak by disabling the Console API all together. This means, console functionality will not work in Patchright. If you really need the console, you might be better off using Javascript loggers, although they also can be easily detected.

Command Flags Leaks

Patchright tweaks the Playwright Default Args to avoid detection by Command Flag Leaks. This (most importantly) affects:

  • --disable-blink-features=AutomationControlled (added) to avoid navigator.webdriver detection.
  • --enable-automation (removed) to avoid navigator.webdriver detection.
  • --disable-popup-blocking (removed) to avoid popup crashing.
  • --disable-component-update (removed) to avoid detection as a Stealth Driver.
  • --disable-default-apps (removed) to enable default apps.
  • --disable-extensions (removed) to enable extensions

General Leaks

Patchright patches some general leaks in the Playwright codebase. This mainly includes poor setups and obvious detection points.

Closed Shadow Roots

Patchright is able to interact with elements in Closed Shadow Roots. Just use normal locators and Patchright will do the rest.
Patchright is now also able to use XPaths in Closed Shadow Roots.


Stealth

With the right setup, Patchright currently is considered undetectable. Patchright passes:


Documentation and API Reference

See the original Playwright Documentation and API Reference

Extended Patchright API

evaluate Method (Frame.evaluate, Page.evaluate, Locator.evaluate, Worker.evaluate, JSHandle.evaluate)

  • Added isolated_context to choose Execution Context (Main/Isolated). Bool (optional, Defaults to True)
object.evaluate(
    expression: str,
    arg: typing.Optional[typing.Any] = None,
    ...,
+   isolated_context: typing.Optional[bool] = True
)

evaluate_handle Method (Frame.evaluate_handle, Page.evaluate_handle, Locator.evaluate_handle, Worker.evaluate_handle, JSHandle.evaluate)

  • Added isolated_context to choose Execution Context (Main/Isolated). Bool (optional, Defaults to True)
object.evaluate_handle(
    expression: str,
    arg: typing.Optional[typing.Any] = None,
    ...,
+   isolated_context: typing.Optional[bool] = True
)

evaluate_all Method (Locator.evaluate_all)

  • Added isolated_context to choose Execution Context (Main/Isolated). Bool (optional, Defaults to True)
Locator.evaluate_all(
    expression: str,
    arg: typing.Optional[typing.Any] = None,
    ...,
+   isolated_context: typing.Optional[bool] = True
)

Bugs

The bugs are documented in the Patchright Driver Repository.


TODO

The TODO is documented in the Patchright Driver Repository.


Development

Deployment of new Patchright versions are automatic, but bugs due to Playwright codebase changes may occur. Fixes for these bugs might take a few days to be released.


Support our work

If you choose to support our work, please contact @vinyzu or @steve_abcdef on Discord.


Copyright and License

© Vinyzu

Patchright is licensed Apache 2.0


Disclaimer

This repository is provided for educational purposes only.
No warranties are provided regarding accuracy, completeness, or suitability for any purpose. Use at your own risk—the authors and maintainers assume no liability for any damages, legal issues, or warranty breaches resulting from use, modification, or distribution of this code.
Any misuse or legal violations are the sole responsibility of the user.


Authors

Active Maintainer: Vinyzu
Co-Maintainer: Kaliiiiiiiiii

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

phantomwright_driver-1.57.7-py3-none-win_arm64.whl (32.8 MB view details)

Uploaded Python 3Windows ARM64

phantomwright_driver-1.57.7-py3-none-win_amd64.whl (36.5 MB view details)

Uploaded Python 3Windows x86-64

phantomwright_driver-1.57.7-py3-none-win32.whl (36.5 MB view details)

Uploaded Python 3Windows x86

phantomwright_driver-1.57.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (45.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

phantomwright_driver-1.57.7-py3-none-macosx_11_0_universal2.whl (42.0 MB view details)

Uploaded Python 3macOS 11.0+ universal2 (ARM64, x86-64)

phantomwright_driver-1.57.7-py3-none-macosx_11_0_arm64.whl (40.8 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

phantomwright_driver-1.57.7-py3-none-macosx_10_13_x86_64.whl (42.0 MB view details)

Uploaded Python 3macOS 10.13+ x86-64

File details

Details for the file phantomwright_driver-1.57.7-py3-none-win_arm64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 987ac6d31c856c1691be50e380dca4d40960bea357abebae307df332240ae236
MD5 5a3aa518a10cfbd39e4f61cb94763742
BLAKE2b-256 8d31bfb808779db0715fbc50f3b9bb344571ad00376b4993aec7dfd1133a60b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-win_arm64.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 ad632b60ad0d7f963f9f2f6456a71c76fb9973949fae41e97b175a1b433ffb11
MD5 bc260b2a5aa3bc1b17205b039ba4793e
BLAKE2b-256 f89886adecb8164750e5ef1c9068b8f4b59436f97cf23b08352d10de797bbbc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-win_amd64.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-win32.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-win32.whl
Algorithm Hash digest
SHA256 82d12f63fdfee90a4d5346302193f73e3952c05c36e365a48a9af973132a320b
MD5 d9303006907fc0aa370dab323eec5118
BLAKE2b-256 614df7bf7a7bb84129ddada05eaad7e5a7d727d12cc6d73d0d0acb12ea61b9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-win32.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52c9fbde46c88fb33aecb6565891c0fba4dfdef4c4a8b5e21ba0a54b1a83bcd6
MD5 a63119a8666f51b4e47bc0497f96c269
BLAKE2b-256 6d23e8c9f0f6809633dbc2abe840c915c3016992b9b691686d9be9a5f1d00622

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 27443c44bef94581df47c1e9f752adf5217e2d811bab6e3ea999e228384b1690
MD5 63fd0e548ea6d51196085c31d5f97d8c
BLAKE2b-256 655e82eb7adc1582e5a476ba8e9afe9a2295636d4d259ba607935723435459f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-manylinux1_x86_64.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9195eb7425dcdc7d268c6838189d2690ad8ebf75a3d00a9b5edb76f4c5f6e1ec
MD5 557d8f9236c9b362c4800d42b630ff58
BLAKE2b-256 e536c1d7584c882b4937405a083b869c2ece8653e006ce36c7bdc42345870c4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-macosx_11_0_universal2.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8daa6eb4c66c6b0c53c807d62fb1fd99609c9d92288985bbdf49f62fa4629fee
MD5 6cfe3a24a4c5dbcfc80788323d41c3c8
BLAKE2b-256 dc9cc6cb7e3c97c857de3b7e4287a4b449632a6194edcdf2d517ef949dcd53f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-macosx_11_0_arm64.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phantomwright_driver-1.57.7-py3-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.57.7-py3-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d46820b6ecdbe89f301148820ee49ae87f963e03741833d350dcde5454355f0
MD5 d2f61ccd215e33120d3bfebef1620f64
BLAKE2b-256 ce4259b400ae1f90595eea4a4a0cc64a76b33c83d3b83b6aa33145aa29edfd0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.57.7-py3-none-macosx_10_13_x86_64.whl:

Publisher: patchright_release.yml on StudentWan/phantomwright-driver-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page