-
Notifications
You must be signed in to change notification settings - Fork 221
ipv6 vs ipv4 which does your proxy use
You set a proxy, an IP-echo page shows the proxy's IPv4, and you assume every request exits there. On a machine that has working IPv6 that assumption has a hole in it, and the hole is not in JavaScript or in WebRTC. It is one layer lower, in which network your browser actually opened the TCP connection over.
A SOCKS proxy carries one address family per connection. If the proxy is reached over IPv4 and a connection to a site slips out of the tunnel, a dual-stack host will make that direct connection over IPv6 by preference, and the site logs your real global IPv6 address. This is the same failure family as the WebRTC IPv6 leak, but at the transport layer rather than through ICE candidates, so a WebRTC-only check will never see it. This page is why it happens, how to see it in your own setup, how to force the browser onto one family, and what pinning the family does and does not buy you.
"Which IP does the site see" has two answers that usually agree and occasionally do not.
- The application answer: what a page reads back when it asks an echo endpoint for your address. This is the one every leak tutorial checks, and behind a working proxy it shows the proxy.
- The transport answer: the source address of the actual TCP connection the socket opened. This is the one the site's own access log records, before any page runs.
When every connection rides the proxy, both answers are the proxy and there is nothing to discuss. The gap opens when a connection is made outside the tunnel: the transport answer becomes your host's address while the application answer, read from some other already-proxied request, can still say the proxy. You are then looking at a screen that says "proxy" while a log somewhere says "you".
A host with both a routable IPv4 and a global IPv6 address is called dual-stack. Modern connection logic on such a host does not pick randomly. It follows an address-selection order (the "happy eyeballs" behaviour, RFC 8305) that prefers IPv6 and only falls back to IPv4 when the v6 path fails or is slow.
That preference is exactly what you want on a normal machine and exactly what works against you here. The moment any connection is allowed to go direct, the browser's first choice is your global IPv6 address, which is routable from anywhere, stable, and unique to the machine. It is not a private LAN address that needs masking. It is a public identifier of the host, and it went out on a transport your IPv4 proxy was never part of.
A correctly configured SOCKS5 proxy tunnels every TCP connection, so in the normal case nothing escapes. The escapes are specific and each one is a configuration seam rather than a mystery.
-
A proxy-bypass entry. No-proxy lists (for
localhost, a LAN range, or a named host) tell the browser to connect directly for anything that matches. A direct connection on a dual-stack host takes IPv6 first. If a target ever matches a bypass rule you forgot was there, that request leaves on your real address. -
Local DNS that returns an AAAA record. With remote DNS turned off, the host
resolves names itself. A dual-stack site answers with an AAAA (IPv6) record, and the
browser tries to open an IPv6 socket to it. An IPv4-only proxy has no v6 destination
to hand off to, so the stack can fall back to a direct connection. This is why the
public pref
network.proxy.socks_remote_dnsmatters: with remote DNS on, the browser hands the proxy a hostname and never resolves an AAAA locally to chase. - Driving the raw browser without the proxy prefs. If you launch Firefox yourself and skip the SOCKS preferences, only part of the traffic is proxied and the rest is direct, over IPv6 by preference.
The common thread: the proxy protects the connections that go through it, and an IPv6 leak is a connection that did not. None of these is visible to an in-page IP check that happens to have ridden the tunnel, which is what makes the transport answer worth measuring on its own.
The WebRTC IPv6 leak and this one rhyme, and telling them apart is the point.
-
WebRTC IPv6 is not a connection at all. WebRTC enumerates the host's network
interfaces locally and emits your global IPv6 as an ICE candidate. Nothing was
dialed; the address was read off the interface list and printed to the page. A SOCKS
proxy cannot stop it because there is no TCP to tunnel, and the pref
media.peerconnection.ice.disableIPv6no longer reaches the code that emits it. - Transport IPv6 is a real connection. A socket opened over IPv6 outside the proxy, logged by the site as an ordinary request from your machine.
They come from different layers, they leak on different signals, and they need different fixes. They also compound: a host with global IPv6 is the precondition for both. Fix the interface enumeration and the transport can still leak; fix the transport and WebRTC can still enumerate. A single global IPv6 address on the machine feeds two independent channels, which is why a real check reads every surface, not just WebRTC.
The cleanest fix is to remove the choice. If your proxy carries IPv4, deny the browser IPv6 for outbound name resolution so no connection can prefer a v6 path in the first place.
- Route DNS through the proxy. invisible_playwright does this by default: DNS is resolved at the proxy, not locally, so the browser never gets a local AAAA answer to chase onto a direct IPv6 socket. That default closes the most common seam without you touching anything.
-
Disable AAAA resolution at the browser. The public Firefox pref
network.dns.disableIPv6set totruemakes Firefox stop doing IPv6 name lookups host-wide, so every connection is IPv4 and matches an IPv4-only proxy. Note this is a different pref from the WebRTC one above and it actually takes effect on the transport path. If you drivefirefox.launch()yourself, set it infirefox_user_prefsalongside the SOCKS preferences fromget_default_stealth_prefs(proxy=...). - Or match the proxy to the host. The other honest answer is a dual-stack proxy: if the exit carries IPv6 too, an IPv6 connection exits at the proxy and there is nothing to leak. Forcing IPv4 is the fix when the proxy is v4-only; a v6-capable exit is the fix when you would rather keep IPv6.
Pick removal of the choice (force v4) or coverage of both (dual-stack exit). What you do not want is the middle state: an IPv6-capable host and a v4-only proxy with nothing holding the browser to v4.
Do not assume, read it. The launch is a two-line change from stock Playwright, and every method after it is standard Playwright. Install it first:
pip install invisible-playwrightThen ask an IP-echo endpoint, from inside the proxied browser, which address it saw, and check the family:
from invisible_playwright import InvisiblePlaywright
PROXY = {"server": "socks5://gate.example.com:1080", "username": "u", "password": "p"}
PROXY_EXIT = "203.0.113.7" # the IPv4 you expect the proxy to present
with InvisiblePlaywright(seed=42, proxy=PROXY) as browser:
page = browser.new_page()
page.goto("https://example.com") # a real remote page, through the proxy
# The transport answer: what address the endpoint actually logged for us.
seen = page.evaluate(
"() => fetch('https://example.com/ip').then(r => r.text())" # your own IP echo
).strip()
family = "IPv6" if ":" in seen else "IPv4"
print("address the site logged:", seen, "(" + family + ")")
# A colon on a v4-only proxy means the connection left the tunnel on the
# host's own IPv6. Equal-to-proxy IPv4 is the state you want.
assert seen == PROXY_EXIT, f"LEAK: site saw {seen} ({family}), not the proxy exit"
print("confirmed: every request family matches the proxy")seed=42 makes the run reproducible, so a leaking run can be replayed exactly rather
than guessed at. Run it more than once and from the machine that runs production, not
your laptop, because a home network and a datacenter host have different IPv6 stories.
If the address comes back with a colon and it is not your proxy's own IPv6, a
connection escaped, and the previous section is how you close it. For the full
multi-surface version that also confirms WebRTC, DNS and timezone, see
how to check if a proxy leaks your real IP.
Forcing the family fixes one specific thing: it stops your real IPv6 from being the transport answer while you were watching the application answer. That is worth doing, and it is invisible to the checks most people run.
It is worth being just as clear about what it does not do. invisible_playwright is built to look like a real Firefox driven by a real person, which is why the fingerprint, the TLS handshake and the driver layer read as genuine and pass most detection checks on their own. None of that, and none of the IPv6 handling on this page, changes the reputation of the address you do exit on. A proxy whose IP is already on a blocklist, an exit shared by a thousand other clients this minute, a per-account quota, a rate limit, or a request cadence no human produces will all fail a session whose address family is perfectly pinned. Those you supply: a clean exit and human pacing. This page keeps the address honest; it does not make a bad address good. Which family your proxy exposes is one seam among several, and it sits inside the wider question of why a clean fingerprint can still be blocked.
The address on your screen is the application answer. The address in the site's log is the transport answer, and on a dual-stack host with an IPv4-only proxy the two can disagree, because a connection that escaped the tunnel takes IPv6 by preference and carries your real global address. It is the WebRTC IPv6 leak's cousin one layer down, and a WebRTC check cannot see it. Route DNS through the proxy, pin the browser to the proxy's family or use a dual-stack exit, and then measure the transport answer instead of trusting the one the page hands you. Do that and "the proxy's IP" starts meaning the address every connection actually used.
Does a proxy make all my traffic use one IP? Only the connections that go through it. On a dual-stack host, a connection that escapes the tunnel (a bypass rule, a local AAAA lookup, an unproxied launch) goes direct over IPv6 and carries your real address.
My IP-echo page shows the proxy. Am I safe? Not necessarily. That is the application answer, read from a request that rode the tunnel. The site's access log records the transport answer, which can be a different family if another connection went direct.
How do I force IPv4 through the proxy? Route DNS through the proxy so no AAAA is
resolved locally (the default here), and set the public pref
network.dns.disableIPv6 to true so Firefox stops doing IPv6 name lookups entirely.
Is this the same as the WebRTC IPv6 leak? Same address, different layer. WebRTC reads your IPv6 off the interface list without opening a connection; this is a real TCP connection made outside the proxy. Fixing one does not fix the other.
Does media.peerconnection.ice.disableIPv6 help here? No. That pref is about
WebRTC candidate gathering and no longer reaches even that path. For transport, the
pref that takes effect is network.dns.disableIPv6.
If I pin the family, will the site stop blocking me? Not on its own. It keeps your real IPv6 out of the log, but it does nothing for IP reputation, shared exits, quotas, rate limits or behaviour. Those need a clean proxy and human pacing, which you supply.
- This project's proxy handling, which resolves DNS at the proxy by default so a local AAAA record cannot steer a connection onto the host's IPv6, and the transport-answer measurement above, read from inside the proxied browser rather than assumed.
- A read of standard Firefox proxy and DNS preferences (
network.dns.disableIPv6,network.proxy.socks_remote_dns) and the RFC 8305 address-selection behaviour that makes a dual-stack host prefer IPv6, distinct from the WebRTC ICE path.
See also: why a proxy does not stop a WebRTC IPv6 leak for the interface-enumeration cousin of this leak, how to check if a proxy leaks your real IP for the positive-form multi-surface version, and SOCKS5 versus HTTP proxy for which schemes carry DNS through the tunnel in the first place.
Written while maintaining invisible_playwright, a Firefox patched at the C++ level driven by stock Playwright. The transport-answer check on this page exists because "the page shows the proxy" and "the log shows the proxy" are not the same sentence on a dual-stack host.
Documentation
Guides
-
Browser Identity
- navigator.webdriver is not the tell you think it is
- hardwareConcurrency, deviceMemory and storage quota
- Screen size and viewport tells in headless browsers
- Playwright headless vs headed: what detectors see
- Playwright User Agent: Why You Should Not Set It
- Client Hints and Sec-Fetch: headers that must agree
- Codec fingerprinting: canPlayType and MediaCapabilities
- Permissions API: the two answers that must agree
- CSS fingerprinting: what media queries reveal
- What privacy.resistFingerprinting actually does
- speechSynthesis.getVoices() returns an empty array
- Browser extensions are a fingerprint surface
- BFCache and pageshow.persisted under browser automation
- Service workers, storage partitioning and automation
- Web Workers: where page-level fingerprint patches fail
- fake-useragent is archived: what changes and what doesn't
- navigator.buildID and the stale build date tell
- navigator.maxTouchPoints and pointer consistency
- navigator.platform and oscpu on a spoofed OS
- navigator.vendor and productSub: the Firefox tells
- Accept-Language header vs navigator.languages
- window.devicePixelRatio: the pref that spoofs it
- Can you be fingerprinted in incognito mode?
- Is changing the user agent enough to avoid detection?
- Can a website tell you are running on a server?
- Can two devices share a browser fingerprint?
- Does clearing cookies stop fingerprint tracking?
- Color-gamut and HDR media queries as a fingerprint
- Battery API fingerprint: does Firefox expose it?
- Is navigator.connection a fingerprint in Firefox?
- Can the Gamepad API fingerprint or detect a bot?
- Do accelerometer and gyroscope APIs leak on desktop?
- prefers-reduced-motion and other OS-setting tells
- Does storage quota estimate reveal disk size?
- Can scrollbar width reveal my operating system?
-
Canvas, WebGL, Fonts and Audio
- Canvas fingerprint noise: why per-call randomising fails
- Firefox WebGL renderer strings: what ANGLE reports
- WebGL parameters: the numbers are the same on every GPU
- Your renderer string says NVIDIA. Your pixels say software.
- Why headless browsers render different fonts
- How to make Linux and macOS report real Windows fonts
- measureText and TextMetrics as a fingerprinting surface
- AudioContext fingerprinting, and why adding noise backfired
- Canvas and WebGL fingerprints, identical across OSes
- Emoji fingerprinting: why emoji look the same on any OS
- Detecting installed fonts in JavaScript by width
- WebGL shader precision as a fingerprint surface
- AudioContext sampleRate and latency as a fingerprint
- Is WebGPU a browser fingerprint?
-
Network, Proxy and WebRTC
- WebRTC leak with a proxy in Playwright and Selenium
- WebRTC ICE candidate spoofing: the fields that give it away
- Playwright proxy in Python: per-context, and what leaks
- Playwright proxy not working? SOCKS5 auth in Python
- Playwright timezone does not match the proxy IP
- JA3 and JA4: why a TLS fingerprint cannot be patched
- Playwright in Docker: it runs, and still gets blocked
- Web scraping keeps getting blocked with good proxies
- Python web scraping blocked? The TLS fingerprint reason
- SOCKS5 vs HTTP proxy: what each does in the browser
- WebRTC IPv6 leak: why a proxy does not stop it
- HTTP/2 fingerprint: the layer above the TLS handshake
- TLS fingerprint vs User-Agent: the contradiction
- WebRTC has no ICE candidates behind a proxy
- WebRTC IP that matches the proxy exit, by design
- How to check if a proxy leaks your real IP
- about:webrtc: read your real ICE candidates
- Offline timezone resolution from a proxy exit IP
- Residential vs datacenter vs mobile proxies explained
- Sticky vs rotating proxy sessions: which to use
- Does a proxy leak DNS? DoH and DNS leaks explained
- HTTP/3 and QUIC fingerprint: what a site sees
- What is ASN and IP reputation in bot detection?
- What does a mobile carrier IP look like to a site?
- IPv6 vs IPv4: which does your proxy expose?
- Geolocation API vs IP location: keep them consistent
- Does chaining two proxies help avoid detection?
-
The Automation Layer
- Function.prototype.toString and the [native code] check
- The ChromeDriver
cdc_variable, and why renaming it fails - Why an attached debugger makes automation detectable
- Execution context was destroyed, and when it means detection
- Human-like mouse movement: Bezier curves are the easy part
- Why a Playwright upgrade broke 97 of 133 tests overnight
- Playwright persistent profile: what it fixes and breaks
- Why humanized mouse movement can fail on hover()
- Why content_frame() returns None for a cross-origin iframe
- Orphaned Firefox processes on Windows: the killed-runner leak
- Firefox launches but Playwright can't drive it: packaging gap
- Why automating login is riskier than reusing a session
- Playwright new_page vs new_context: the viewport tell
- Playwright dialog and popup handling without a tell
- Playwright download files with Firefox and the tell
- Playwright connect_over_cdp does not work with Firefox
- Playwright mobile emulation on Firefox and isMobile
- Playwright isTrusted: are automated clicks real?
- Playwright set_input_files uploads and the tell
- Can websites detect Playwright? What is actually visible
- Does Playwright Set navigator.webdriver to True?
- Does Playwright Leave Traces a Website Can See?
- Does Playwright Change My Browser Fingerprint?
- Can I Use My Real Browser Profile With Playwright?
- Does Playwright Support Firefox Stealth?
- Is Playwright Firefox Harder to Detect Than Chromium?
- Does Playwright Get Detected on the First Request?
- Why Playwright's bundled Firefox is easy to detect
- ghost-cursor human mouse paths with Playwright
- Stock Playwright, patched Firefox: how they connect
- Intercept and mock network requests with page.route
- Record and replay HTTP traffic with HAR in Playwright
- Record a Playwright trace to debug a failed scrape
- Record a video of a Playwright browser session
- Save and reuse login with storage_state in Playwright
- Read and set cookies in a Playwright context
- Set geolocation and permissions per Playwright context
- Handle HTTP basic auth in Playwright (http_credentials)
- Isolate identities with a browser context per session
- Drag and drop elements in Playwright with drag_to
- When to use an HTTP client vs a real browser
- Migrating from requests + BeautifulSoup to a browser
-
AI Agents and Frameworks
- AI browser agents and stealth: what fits and what does not
- browser-use gets detected: what you can and cannot change
- crawl4ai stealth mode and custom browser engines
- Give a LangChain agent an invisible_playwright browser
- Feed invisible_playwright pages into a RAG index
- Computer-use agents and browser fingerprint detection
- Give an MCP browser server a stealth Firefox engine
- Give each AI agent a reproducible browser identity
- Run parallel browser agents with distinct fingerprints
- Why AI browser agents have their own timing signal
- Running an AI browser agent headless on a server
- Give a browser agent a persistent logged-in session
- smolagents: hand the agent an invisible_playwright tool
- Stagehand and stealth: why a Firefox engine won't drop in
- DOM-reading vs screenshot agents: which stealth helps
- Back a computer-use agent with a real browser engine
- AI agent retry loops trip rate limits, not fingerprints
-
Detectors, Explained
- What bot.sannysoft.com actually checks, row by row
- How CreepJS decides you are lying
- What BotD actually detects, and what it does not
- Why a FingerprintJS visitor ID changes
- reCAPTCHA v3 score: why a fresh browser scores badly
- BrowserLeaks canvas and WebGL hash, explained
- What BrowserLeaks actually tests, surface by surface
- Browser trust scores explained: what the number means
- How do websites detect bots?
- What is a browser fingerprint?
- What data does a website collect about your browser?
- Does a VPN stop browser fingerprinting?
- Do websites know you are using a script?
- How accurate is browser fingerprinting?
- Can a website detect a virtual machine?
- Can websites detect a datacenter or proxy IP?
- getClientRects fingerprinting: subpixel geometry as ID
- Notification.permission as a bot-detection signal
- speechSynthesis voices as a cross-platform fingerprint
- Can a website detect typing by keystroke timing?
- Can a website detect Clipboard API access?
- What are mouse-dynamics behavioural biometrics?
-
Testing and Troubleshooting
- How to test bot detection without a false pass
- Playwright detected as a bot: the checklist to fix it
- Firefox preferences that silently do nothing
- Slow browser launch: a per-request timeout is not a budget
- Playwright screenshot returns noise: readback fix
- Canvas fingerprint changes every run: use a seed
- Playwright TargetClosedError: the causes and the fixes
- Why am I blocked with a clean fingerprint?
- Why Does My Playwright Script Get Blocked?
- Is Playwright headless detectable? What sites check
- Can You Run Playwright Without Being Detected?
- Why Playwright Works Locally but Fails in the Cloud
- Does Playwright Trigger reCAPTCHA More Often?
-
Scraping with Playwright
- How to scrape without getting blocked
- How to scrape a site that blocks headless browsers
- How to scrape infinite scroll pages with Playwright
- How to rotate proxies when scraping with Playwright
- How to scrape data behind a login with Playwright
- How to run Playwright in Docker without getting detected
- How to use invisible_playwright in Docker
- Playwright bot detection: how to avoid it in Python
- How to scrape paginated pages with Playwright
- How to download files with Playwright
- How to upload files with Playwright, and verify it landed
- How to handle cookie consent banners in Playwright
- How to handle popups and modals in Playwright
- How to take full-page screenshots with Playwright
- How to generate a PDF with Playwright and Firefox
- How to wait for content to load in Playwright
- How to retry failed requests when scraping Playwright
- How to scrape pages in parallel with Playwright
- How to rate limit your own Playwright scraper
- How to scrape HTML tables with Playwright
- How to scrape iframe content with Playwright
- How to scrape shadow DOM content with Playwright
- How to capture XHR and API responses in Playwright
- How to scrape geotargeted content with Playwright
- How to scrape real estate listings with Playwright
- How to scrape job postings with Playwright
- How to scrape e-commerce product pages with Playwright
- How to track product prices with Playwright
- How to scrape hotel room prices with Playwright
- How to scrape flight prices with Playwright
- How to scrape classifieds listings with Playwright
- How to scrape vacation rental listings with Playwright
- How to scrape car listings with Playwright
- How to scrape apartment rentals with Playwright
- How to track product stock and restocks with Playwright
- How to scrape location-based store prices with Playwright
- How to scrape flexible-date fare calendars with Playwright
- How to scrape product reviews with Playwright
- How to scrape reviews and ratings with Playwright
- How to scrape news article text with Playwright
- How to scrape business directory listings with Playwright
- How to scrape event and ticket listings with Playwright
- How to scrape restaurant menu data with Playwright
- How to scrape stock and financial data with Playwright
- How to scrape social media profiles with Playwright
- How to scrape forum and community threads with Playwright
- How to scrape image galleries with Playwright
- How to scrape video listings and metadata with Playwright
- How to scrape map-based local results with Playwright
- How to scrape sports scores and stats with Playwright
- How to scrape cryptocurrency prices with Playwright
- How to scrape deals and coupon codes with Playwright
- How to scrape to CSV with Playwright
- How to scrape to JSON Lines with Playwright
- How to scrape into a SQLite database with Playwright
- How to export scraped data to Excel with Playwright
- How to extract JSON-LD structured data with Playwright
- How to extract Open Graph and meta tags with Playwright
- How to extract links and build a crawl frontier in Playwright
- How to scrape RSS and Atom feeds with Playwright
- How to download images in bulk with Playwright
- How to extract clean article text with Playwright
- How to scrape a sitemap.xml with Playwright
- How to scrape into a pandas DataFrame with Playwright
- How to clean scraped prices and dates with Playwright
- Scrape search results by driving a form in Playwright
- Scrape a map-based search with Playwright
- Scrape autocomplete and typeahead inputs with Playwright
- Scrape date-picker calendars with Playwright
- Crawl list pages to detail pages with Playwright
- Scrape lazy-loaded images with Playwright
- Extract data from canvas charts with Playwright
- Scrape a multi-step wizard flow with Playwright
- How to resume an interrupted scrape with Playwright
- Incremental scraping: only new items since last run
- Handle 403 and 429 backoff mid-scrape in Playwright
- Scrape load-more button pages with Playwright
- Scrape nested pagination with Playwright
- Scrape an SPA that changes URL via history API
- Use BeautifulSoup with invisible_playwright
- Run stealth Playwright tests with pytest fixtures
- Run invisible_playwright concurrently with asyncio
- Run invisible_playwright in GitHub Actions CI
- Can you run invisible_playwright serverless?
- Run invisible_playwright in Celery task workers
- Schedule invisible_playwright scrapes with cron
- Run invisible_playwright headful on a server with Xvfb
- Use invisible_playwright in an Airflow DAG
- Combine invisible_playwright with httpx for speed
- Wrap invisible_playwright in a FastAPI service
- Run invisible_playwright in a Jupyter notebook
- Block images to speed up scraping (and when not to)
- Wait for a specific API response in Playwright
Comparisons
- Playwright stealth in Python: three levels that work
- Firefox or Chromium for anti-detect automation
- Chromium is not Chrome, and detectors know the difference
- Playwright stealth vs Camoufox: two patched Firefoxes
- Playwright stealth vs Patchright: driver vs engine
- Playwright stealth vs undetected-chromedriver and nodriver
- playwright-stealth vs a patched engine: page vs browser
- puppeteer-extra-plugin-stealth: unmaintained since 2024
- selenium-stealth hasn't been updated since December 2021
- pyppeteer's own maintainer says to switch to Playwright
- invisible_playwright vs rebrowser-patches: the same CDP fix
- invisible_playwright vs fingerprint-suite: injection vs engine
- invisible_playwright vs playwright-with-fingerprints
- invisible_playwright vs Scrapling
- invisible_playwright vs Ulixee Hero
- invisible_playwright vs SeleniumBase UC Mode
- Splash is unmaintained, and it was never a real browser
- invisible_playwright vs DrissionPage
- WebDriver BiDi vs CDP: does the new protocol hide you
- invisible_playwright vs hrequests
- zendriver vs invisible_playwright: Chrome CDP vs Firefox
- botasaurus vs invisible_playwright: framework vs library
- curl_cffi vs invisible_playwright: TLS client vs browser
- pydoll vs invisible_playwright: CDP without a driver
- selenium-driverless vs invisible_playwright stealth
- puppeteer-real-browser vs invisible_playwright
- Migrating from Selenium to Playwright for stealth
- Migrating from Puppeteer to Playwright for stealth
- undetected-chromedriver vs a patched Firefox browser
- scrapy-playwright vs a patched Firefox for stealth
- playwright-extra stealth plugins vs a patched browser
- tls-client vs a real browser: when TLS is enough
- Anti-detect browser or Playwright stealth: which you need
- undetected-playwright vs a patched Firefox binary
Integrations
- Using invisible_playwright with CodeceptJS
- Using invisible_playwright with Crawlee for Python
- Using invisible_playwright with Crawlee for JavaScript
- Using invisible_playwright with scrapy-playwright
- Using invisible_playwright with Robot Framework Browser
- Cypress, WebdriverIO, TestCafe and Nightwatch integration
- Using invisible_playwright with Microsoft's Playwright MCP
- Using the engine from Go, Java, C#, Ruby and Rust
docs/ source folder