Skip to main content

Undetected Python version of the Playwright testing and automation library tweaked for a specific logic.

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


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 (Frame.evaluate_all)

  • Added isolated_context to choose Execution Context (Main/Isolated). Bool (optional, Defaults to True)
Frame.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.

re_patchright-1.52.10-py3-none-win_arm64.whl (30.7 MB view details)

Uploaded Python 3Windows ARM64

re_patchright-1.52.10-py3-none-win_amd64.whl (34.8 MB view details)

Uploaded Python 3Windows x86-64

re_patchright-1.52.10-py3-none-win32.whl (34.8 MB view details)

Uploaded Python 3Windows x86

re_patchright-1.52.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

re_patchright-1.52.10-py3-none-manylinux1_x86_64.whl (45.1 MB view details)

Uploaded Python 3

re_patchright-1.52.10-py3-none-macosx_11_0_universal2.whl (39.6 MB view details)

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

re_patchright-1.52.10-py3-none-macosx_11_0_arm64.whl (37.9 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

re_patchright-1.52.10-py3-none-macosx_10_13_x86_64.whl (39.6 MB view details)

Uploaded Python 3macOS 10.13+ x86-64

File details

Details for the file re_patchright-1.52.10-py3-none-win_arm64.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 2f47b67a0f31b4e09753f2e94e0075342aaba11f1e2697c1ca13b45eadb2ec58
MD5 d2a8054e9607372240b7bd1a6ccc44a7
BLAKE2b-256 e754ccd9fb2cfc6cf2f90a39a07ec101e4e0ec552de8ca86959e066f5a5fb43a

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-win_arm64.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa9cb2e3fbc392a8293b6044d79a576022cf110fb2f7663480fbcc422563c74d
MD5 c841ceb97cd13493518a5fc0ab407caa
BLAKE2b-256 23c96c1ab0ec255ada64a58d40030acdc41f27c82d201fe3067ba895e4020343

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-win_amd64.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-win32.whl.

File metadata

  • Download URL: re_patchright-1.52.10-py3-none-win32.whl
  • Upload date:
  • Size: 34.8 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for re_patchright-1.52.10-py3-none-win32.whl
Algorithm Hash digest
SHA256 97d06363b5ff0b1d362eb9d64a8d7199e0b20f2ba8a68851faaec63c53c2bc02
MD5 701c8b35cb0ce838cebeb3d867f5f2fd
BLAKE2b-256 4d0fe50abdb7426c9dd1201380f1a82806c64ef03fb5449858c02d49bfd329d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-win32.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ee00852dc6bd3193f8d5bef3632326861a62c25ce1308f1c891f5b89643fca3
MD5 16c111a045bf465e24a8a00864f04d27
BLAKE2b-256 3c352867c700692498df1512eb87ebaf23bc6016af01a432a89a515935d5cc2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f945f62653ecc91d341f6aa8b5483bacadaba01b79c7db77a1cafd3c37c1cd0f
MD5 d1e2c0071d8a24f9c959754cb2f7fec4
BLAKE2b-256 b07f4d530cc3a2b6abe954833656f075059d383364ec93e76d93e1997f841e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-manylinux1_x86_64.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a82d2a084f6d023085eceaefa0f56309c13455a703e3c84d0bea44efa1d461b9
MD5 ad8d06c6c4cf7265ef934283d64cf3da
BLAKE2b-256 3a70c70c9dcd94dc3bb9230d280c6063353867af2e602101c34ae9f34344b0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-macosx_11_0_universal2.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5aa9e42974e328cf6597565f1560f134c798b8d14ca3f0ff692ab0a1970507f
MD5 e043e5977a41fbaad56119073cea1942
BLAKE2b-256 2c04716f63293d41a936bf1d950c12bef49dc9066273ccd9e2ee7faa38816517

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-macosx_11_0_arm64.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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 re_patchright-1.52.10-py3-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for re_patchright-1.52.10-py3-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e04bdea7e96241bdfd91e256e7de341f54262909e0b955ad305beeed2c43f549
MD5 2e2d6c8f598014730cb3c2e6c8a87bca
BLAKE2b-256 284b0539e459c0af6ac5f7133717a8da20447bf63c18d468871fa86c8bf84221

See more details on using hashes here.

Provenance

The following attestation bundles were made for re_patchright-1.52.10-py3-none-macosx_10_13_x86_64.whl:

Publisher: patchright_workflow.yml on imamousenotacat/re-patchright-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