-
Notifications
You must be signed in to change notification settings - Fork 221
how to scrape apartment rentals playwright
To scrape apartment rentals with Playwright, launch a real browser, wait for the unit-availability XHR the listing fires after it loads, and parse the per-floorplan price table it returns, keying each row on its move-in date. A requests-only scraper never fires that request, so it only ever sees the marketing shell.
An apartment building listing looks like one page with one price. It is not. Underneath the marketing shell is a unit-level table: several floorplans, each with its own per-unit prices, each unit carrying a specific availability date, and a price that shifts by move-in date and lease term. That table almost never ships in the initial HTML. It arrives by XHR after the page renders, and a "check availability" action pulls in more units still.
This is the gap that trips up rental scraping. A requests-only scraper fetches the HTML, sees the hero image and a "starting at" number, and calls it done. It never fired the request that returns the units, so it never had the data. The rest of this page is how to fire that request with a real browser and turn what comes back into rows you can trust.
The "starting at $1,850" you see in the initial HTML is a marketing figure. It is the cheapest unit the building has ever offered, not a unit you can rent. The rentable units, with real prices and real dates, live behind a second request that the page issues from JavaScript once it has loaded.
That request is the whole point of the page, and it is exactly what a plain HTTP fetch misses:
- The initial document is a shell. It renders a price band, a gallery, and an empty table the browser is expected to fill.
- The units come back from an XHR keyed to the building ID, often as JSON, sometimes as an HTML fragment the page splices in.
- "Check availability", or picking a move-in month, issues further requests that reveal units the first call withheld.
You could try to reverse-engineer that endpoint and call it directly. Sometimes that works for an afternoon. Then the response starts coming back short, or empty, or a challenge, because the request arrived without a browser session behind it: no matching TLS handshake, no prior page load, no consistent fingerprint. A real browser firing the site's own request is the path that does not rot, and it is the reason this guide launches one instead of hand-rolling the API call.
Switching from stock Playwright is two lines, and every method below is ordinary
Playwright. The browser you get back is a real Playwright Browser.
from invisible_playwright import InvisiblePlaywright
with InvisiblePlaywright(seed=42) as browser:
page = browser.new_page()
page.goto("https://example.com/building/riverside-lofts")
page.wait_for_load_state("networkidle")
print(page.title())The seed=42 is doing more than making the run repeatable. It fixes the whole synthetic
machine behind the browser: GPU, canvas, audio, fonts, screen, roughly 400 fields, all
derived from that one number. The same seed gives the same device every run, which matters
later when you revisit the same building day after day to watch a unit. More on that below.
If you scrape through a proxy, pass it here and let the timezone follow the exit IP rather than pinning it by hand. Configuration covers the proxy schemes and why an explicit timezone is usually the wrong move.
The building's units arrive in a background request. The reliable way to capture it is to
wait for the response whose URL matches the availability endpoint, rather than scraping the
DOM and hoping the table has filled in. Playwright's expect_response does exactly this:
it registers the wait, then you perform the action that triggers the call.
import json
from invisible_playwright import InvisiblePlaywright
BUILDING_URL = "https://example.com/building/riverside-lofts"
with InvisiblePlaywright(seed=42) as browser:
page = browser.new_page()
# Register the wait BEFORE navigating, so the response cannot arrive first.
with page.expect_response(lambda r: "availability" in r.url and r.ok) as resp_info:
page.goto(BUILDING_URL)
response = resp_info.value
units = response.json()
print("captured", len(units.get("floorplans", [])), "floorplans")Some buildings do not load the units until you interact. If the table stays empty after navigation, the units are behind a "check availability" button or a move-in date picker. Wait on the response while you click:
with page.expect_response(lambda r: "availability" in r.url and r.ok) as resp_info:
page.click("button:has-text('Check availability')")
units = resp_info.value.json()Matching on a URL substring is the fragile part of this. Open the network panel once by hand and read the real endpoint, because "availability" is an example and yours will differ. The broader pattern of catching a response by URL, reading its JSON, and keeping the parse separate from the navigation is covered in capturing XHR API responses. If the table fills in without a request you can catch, the units were server-rendered into the document after a delay, and waiting for the page to actually finish loading is the tool for that case instead.
Key every scraped row on the tuple (building, floorplan, unit, move-in date), and treat the price as a value under that key, not a property of the listing. That is the honest modelling. Do not flatten a building to one price, and do not flatten a floorplan to one either: a floorplan holds units, and a unit's price only means something next to its availability date and lease term.
Each row carries these fields:
| Field | What it holds |
|---|---|
building |
the building URL or ID the row belongs to |
floorplan |
the floorplan name, with its bed and bath count |
unit |
the specific unit number within the floorplan |
sqft |
the unit's square footage |
available_on |
the move-in date the price is keyed to |
lease_term_months |
the lease length the price applies to |
price |
the rent for that unit, date, and term |
def rows_from_response(building_url, payload):
rows = []
for fp in payload.get("floorplans", []):
for unit in fp.get("units", []):
rows.append({
"building": building_url,
"floorplan": fp.get("name"),
"beds": fp.get("beds"),
"baths": fp.get("baths"),
"unit": unit.get("unit_number"),
"sqft": unit.get("sqft"),
"available_on": unit.get("available_date"), # the key that moves the price
"lease_term_months": unit.get("lease_term"),
"price": unit.get("price"),
})
return rows
with InvisiblePlaywright(seed=42) as browser:
page = browser.new_page()
with page.expect_response(lambda r: "availability" in r.url and r.ok) as resp_info:
page.goto(BUILDING_URL)
rows = rows_from_response(BUILDING_URL, resp_info.value.json())
for r in sorted(rows, key=lambda x: (x["price"] or 0)):
print(r["floorplan"], r["unit"], r["available_on"], r["lease_term_months"], "->", r["price"])Two things fall out of modelling it this way. First, the same unit can appear at several prices, one per lease term, and collapsing them loses the number you probably care about. Second, the cheapest row is often the one with the furthest-out move-in date, which is why a "starting at" figure and a "can I move in this month" figure disagree. Keep the date on every row and both questions stay answerable.
Rental data is only interesting over time. A single scrape tells you the building's units this minute; the value is in watching a unit's price drift, or a floorplan sell out, across days. That means revisiting the same building repeatedly, and repeated visits from the same target are exactly the pattern a site watches for.
This is where the fixed seed earns its place. Pass the same seed on every poll and each revisit presents the same device: the same GPU, the same fonts, the same canvas hash, the same screen. Day over day, that reads like one returning shopper checking back on a building, not a fresh anonymous device hitting the availability endpoint every morning. A new random fingerprint per poll is the tell, not the disguise.
import datetime, json, pathlib
SEED = 42 # same device on every poll
BUILDING_URL = "https://example.com/building/riverside-lofts"
out = pathlib.Path("availability_history.jsonl")
def poll_once():
with InvisiblePlaywright(seed=SEED) as browser:
page = browser.new_page()
with page.expect_response(lambda r: "availability" in r.url and r.ok) as resp_info:
page.goto(BUILDING_URL)
rows = rows_from_response(BUILDING_URL, resp_info.value.json())
stamp = datetime.datetime.now(datetime.timezone.utc).isoformat()
with out.open("a", encoding="utf-8") as fh:
for r in rows:
r["scraped_at"] = stamp
fh.write(json.dumps(r) + "\n")
return len(rows)
print(poll_once(), "unit-rows appended")Append, never overwrite. Each poll is a snapshot with a timestamp, and the history is the sequence of snapshots; diffing yesterday's file against today's is what surfaces a price drop or a unit that vanished. If you would rather the revisits also carry a browser profile that persists cookies and local storage across runs, so the site sees a continuous session rather than a clean browser each time, persistent profiles combines with the fixed seed for that. And if you want the device stable but need to force one specific field, a particular screen size for example, pinning forces that field while leaving the rest seed-derived.
The reproducibility this product gives you covers the browser, not the leasing office. The seed makes the same machine come back every run. It cannot make the same units come back, because unit availability is real-time state on the building's side, and it flips without warning.
Be precise about what a scraped "available" means. It means the unit was available at the instant that XHR responded. Between two floorplans in the same crawl, someone can sign a lease and the unit you read on page one is gone by the time you reach page three. A crawl is not a transaction; there is no consistent snapshot across a multi-request scrape of a live inventory. Treat every price and every availability date as observed-at-a-timestamp, which is why the monitor above stamps each row, and never as a fact that will still hold when you act on it. The browser is reproducible. The leasing state is not, and no scraper can make it so.
Rental scraping fails when you treat a building as a page with a price. It is a live,
unit-level table delivered by a request the page makes after it loads, priced by move-in
date and lease term. Fire that request with a real browser using expect_response, model
every row as (building, floorplan, unit, date) with the price underneath, and poll over
time from one stable seed so the revisits read as a returning shopper. Then remember the one
thing the code cannot promise you: availability is real-time, so a scraped "available" is a
snapshot with a timestamp, not a guarantee.
Why does my scraper only get one price for a whole building? Because you read the initial HTML, which is a marketing shell with a "starting at" figure. The real per-unit prices arrive in a later XHR that a plain HTTP fetch never triggers.
Can I just call the availability API directly instead of running a browser? Sometimes, briefly. The endpoint expects a real browser session behind it, and direct calls tend to start returning short or empty responses. Firing the site's own request from a real browser is the path that keeps working.
How do I capture the request that has the units? Register page.expect_response on the
availability URL before you navigate or click, then read .json() off the captured
response rather than scraping the DOM.
What should I use as the key for each row? The tuple (building, floorplan, unit, move-in date), with lease term. Price is a value under that key. The cheapest unit is often the one with the furthest-out date, so a price without its date is ambiguous.
How do I track a unit's price over days without looking like a new bot each time? Poll with the same seed every run. The identity stays fixed, so each revisit presents the same device and reads as a returning shopper instead of a fresh anonymous fingerprint per poll.
Is a scraped "available" reliable? Only as of its timestamp. Availability is real-time leasing state and can flip mid-crawl. The seed makes the browser reproducible; it cannot make the inventory reproducible.
- The real
invisible_playwrightAPI as documented in Quickstart and Configuration: the two-line launch, the seed, and the proxy handling used in every example above. - Playwright's own
expect_responseandwait_for_load_statemethods, and navigation methods generally, which the wrapper exposes unchanged because the returned object is a real PlaywrightBrowser. - This project's own testing notes on why a browser that fires a page's real requests outlasts a hand-rolled API call, and why a per-request fingerprint is a tell.
See also: capturing XHR API responses for the general response-capture pattern, waiting for the page to finish loading for the case where units are rendered in rather than fetched, and persistent profiles for keeping a session continuous across polls.
Written while maintaining invisible_playwright, a Firefox patched at the C++ level driven by stock Playwright. The unit-level table, the move-in-date key, and the snapshot caveat are all things a real rental crawl teaches you the hard way.
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