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

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.58.3-py3-none-win_arm64.whl (33.1 MB view details)

Uploaded Python 3Windows ARM64

phantomwright_driver-1.58.3-py3-none-win_amd64.whl (36.8 MB view details)

Uploaded Python 3Windows x86-64

phantomwright_driver-1.58.3-py3-none-win32.whl (36.8 MB view details)

Uploaded Python 3Windows x86

phantomwright_driver-1.58.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (46.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

phantomwright_driver-1.58.3-py3-none-macosx_11_0_universal2.whl (42.2 MB view details)

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

phantomwright_driver-1.58.3-py3-none-macosx_11_0_arm64.whl (41.0 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

phantomwright_driver-1.58.3-py3-none-macosx_10_13_x86_64.whl (42.2 MB view details)

Uploaded Python 3macOS 10.13+ x86-64

File details

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

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 c26da60d751e904d792498f78b92bc7d1eb466f4c54f4fb0e3d9845728a274a3
MD5 01a16ec4174ea7ab315184d7e83f7887
BLAKE2b-256 f89b88c99d69c1f0d34636b3875751f552f982b7ddb8ae3da10c76beb3253dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 2fcd9274f6a1153f40cd36b48ca8232a31406bd88cfdd9197e3e885e562b4d81
MD5 dafbc5da19ca7a5879cf85674e8295e2
BLAKE2b-256 e294b88c9376544bd833cb327704cfa692e4bd5c85526cbebf01e39c6eda739c

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-win32.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-win32.whl
Algorithm Hash digest
SHA256 df8666be9caf060cecdc7ac1e6b9790a88e7f877905663c71e6da38319e59fbe
MD5 cd8e7c7810595443912a1b9a1f594484
BLAKE2b-256 c1ecdc6a0bc956c9c751fcc9e9f4e846657520cc832e11a2c688d9740fee1e4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cf713d19821b0d56ec558b45e7e9ae1ce8db7b68d0f82d00bd010b0293dc0c9
MD5 cff60f9020940ad6cec067292bfeb6a9
BLAKE2b-256 6b147f04ee29bf074c2ca21a177bd804875f2ee3d6c758fe9c6c7e1848520bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7ae174da1395f5021f0136fabdd76b0b9a372274f35353c1ee8b57fd81d60243
MD5 17d476a4174d55fb8bb25d87dda1060b
BLAKE2b-256 7ab0eca4ee5f51fd62307d580b1425fabe0146f928d3a8fda5bdda5636a89f67

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 df641891c2527f21130a27dee5e491041acb91c691361f98cfed91c6af34bbf2
MD5 a7db510c5122e7e86f264f4e8f1c4def
BLAKE2b-256 bb6caec4439ee0f0e2bdc8bc92439d3819d50f1f8c15fd475c292ebf5ff4240e

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83bbbe3fc780d102fb2a79fda04e80b73e9848d200d340896c90feffa56c7244
MD5 f80879efe84d075f3f3666a448d8dcba
BLAKE2b-256 26f4006d05af2554091416bbea807304f013f3dcf5a547067d3772d583b5c1f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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.58.3-py3-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for phantomwright_driver-1.58.3-py3-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0a7003e75e7fe360597bdf69bc19743f5694a79f8b8047739ff8cce1f1504e30
MD5 a4480c13ce9d467194368b0a2e7251e4
BLAKE2b-256 dff9c9f3f930b4abe77617204dc396606c7fe16a7c5f12e9bd67cc2c91152ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for phantomwright_driver-1.58.3-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