-
Notifications
You must be signed in to change notification settings - Fork 221
how to scrape business directory listings playwright
To scrape business directory listings with Playwright, drive the search form for each location-and-category pair, wait for the results to render, un-obfuscate the contact fields, and follow the site's own next control to walk the filtered pagination to its end. Run the whole city-by-category matrix under one pinned identity so it reads as a single visitor rather than a fleet of one-page strangers.
A business directory looks like a flat list and behaves like a nested loop. There is no page you can request that returns every listing. There is a search form that wants a location and a category, results that only appear once you have chosen both, contact fields that are deliberately hard to read, and pagination that lives underneath the filters you set. Getting the data out means driving all four, in that order, and doing it without looking like a new device on every category.
This page is the crawl written as what it actually is: a matrix of city by category by page, driven through a form, with the obfuscated contact fields recovered on the way.
The single most useful thing to understand before writing any code is that the URL is not the unit of work. The unit of work is a filter combination.
A directory gates its listings behind a search that takes at least two inputs, a location and a category, and shows nothing useful until both are set. Under any one combination the results paginate. So the crawl is three loops deep:
for city in cities:
for category in categories:
for page_number in pages_under_this_filter:
extract the listings on this page
That structure is why a directory is throttled by identity rather than by request rate alone. A human browsing the plumbers in one city visits a handful of pages. A full sweep visits every city crossed with every category, and every one of those is the same visitor asking a slightly different question. If that visitor's fingerprint changes between the electricians and the plumbers, the site is not watching one busy person any more, it is watching a fleet of one-page strangers, which is a far cheaper thing to detect.
So the first design decision is to pin the identity for the whole sweep with a seed, and only vary the exit address deliberately. A fixed seed also makes the crawl replayable: if the extractor breaks on one category, you re-run the exact same browser rather than a new random one and get the same page back. That reproducibility is the whole reason this project derives every surface from one seed.
from invisible_playwright import InvisiblePlaywright
CITIES = ["Springfield", "Rivertown", "Lakeside"]
CATEGORIES = ["plumbers", "electricians", "roofers"]
with InvisiblePlaywright(seed=42) as browser:
page = browser.new_page()
for city in CITIES:
for category in CATEGORIES:
crawl_filter(page, city, category) # defined belowDrive the form instead of guessing the results URL: fill the location and category fields, submit, wait for the results container to actually appear, and only then read. That is more robust because it is what a browser does, not a reconstruction of what one did.
It is tempting to reverse-engineer the results URL and skip the form: notice that a search
lands on ?loc=Springfield&cat=plumbers and just build that string. Sometimes it works.
Often the site signs the query, sets a cookie during the form submit, or reads a hidden
token that only exists once the page has run its own JavaScript, and the hand-built URL
returns an empty result or a challenge.
def crawl_filter(page, city, category):
page.goto("https://example.com/search", wait_until="domcontentloaded")
page.fill("input[name='location']", city)
page.fill("input[name='category']", category)
page.click("button[type='submit']")
# a results container appearing is the signal, not a fixed sleep
page.wait_for_selector(".results-list .listing", timeout=15000)
walk_pages(page) # defined belowwait_for_selector on a real result element, rather than a timed sleep, is what keeps
this correct when the network is slow: you are asserting the presence of the thing you
came for. An empty results container that finished loading is a legitimate answer for some
city-category pairs and your loop should treat it as "zero listings here", not as an error,
so wrap the wait and continue on timeout when a combination genuinely has no businesses.
This is the part that separates a directory from an ordinary list. The contact details are present in the page but not readable in the naive way, on purpose, and each obfuscation needs a different move.
Phone numbers rendered as an image. There is no text to read; the digits are pixels.
The element is an <img>, and what you can extract is its src, which is either a URL to
fetch or a data: URI you decode. Turning those pixels back into digits is an
optical-character step outside the browser, so what the crawl records here is the image
reference, handed to an OCR stage downstream.
img = listing.query_selector(".phone img")
phone_image_src = img.get_attribute("src") if img else NonePhone numbers that are entity-encoded. Here the digits are real text, written as HTML
entities like 415 so a crude byte-level scrape of the raw HTML sees gibberish.
The fix is to read the rendered text rather than the source: the browser has already
decoded the entities, and inner_text() gives you the digits a human sees.
phone_text = listing.query_selector(".phone").inner_text().strip()Emails revealed only after a click. The address is not in the DOM until you click a "show email" control, at which point the site fetches or unmasks it. You have to perform a real click and then wait for the revealed value.
listing.query_selector(".reveal-email").click()
page.wait_for_selector(".email-value", timeout=5000)
email = listing.query_selector(".email-value").inner_text().strip()The click matters more than it looks. A reveal control frequently checks that the click was
user-generated before it hands over the address, and a synthetic event that does not carry
that trust gets ignored while your code waits for a value that never appears. Because this
engine dispatches input through the real browser rather than injecting DOM events, the
reveal fires the same way it does for a person. That specific failure, a click that the
page refuses to trust, has its own page on why isTrusted is the thing that
matters.
Addresses split across spans. The street, city and postal code are placed in separate elements, sometimes in a shuffled visual order fixed up by CSS, so a single selector never returns the whole thing. Collect the parts and join them, and if the order is set by CSS rather than DOM order you may need to read the layout, not the markup.
parts = [s.inner_text().strip() for s in listing.query_selector_all(".addr span")]
address = " ".join(p for p in parts if p)Pagination on a directory is stateful: page 2 means "page 2 of the results for this city
and this category", and the filter is held in a cookie, a query parameter, or server-side
session. If you navigate to a bare ?page=2 without the filter in scope you can land on
page 2 of everything, or nothing.
Follow the site's own next control instead, and stop on a real end condition rather than a guessed page count. A directory rarely tells you the total up front, so the reliable terminator is "the next control is gone or disabled".
def walk_pages(page):
while True:
for listing in page.query_selector_all(".results-list .listing"):
record(extract_contact(listing, page)) # your extractor + storage
next_btn = page.query_selector("a.next:not([disabled])")
if not next_btn:
break
next_btn.click()
page.wait_for_selector(".results-list .listing", timeout=15000)The general mechanics of not-losing and not-duplicating rows across pages, and why a scroll-loaded list needs a different terminator than a numbered one, are covered in the pagination guide. The point specific to directories is that the loop lives strictly inside the two filter loops above it; a next click is only meaningful while the search that produced the list is still the active one.
A stable fingerprint solves the coherence problem, not the volume problem, and keeping the two apart is the honest division of labour most guides skip.
Across the whole city-by-category matrix a stable fingerprint presents as one consistent device: the same GPU, the same fonts, the same screen, the same audio stack, session after session, because they all come from one seed. The site sees a single visitor doing a lot of browsing, which is an ordinary thing, instead of a thousand devices each doing one search, which is not. That is real and it is worth having, and it is also why the reveal clicks land: a coherent, genuinely-driven browser is what a trusted event requires.
What the fingerprint does nothing about is volume. A full directory sweep is inherently a lot of requests from one identity, and a coherent identity making ten thousand searches is still ten thousand searches. The fingerprint keeps you from looking like many suspicious devices; it cannot keep you from looking like one very busy one. Two things have to come from outside the browser:
- Pacing. Space the filter combinations out. The velocity of a request stream is measured independently of anything in the page, and hammering the search endpoint is a signal you create no matter how real each individual request looks. We have tripped this on our own test harness.
- Proxy spread with a matching timezone. Spread the exits so the volume is not all from one address, and keep each exit's location consistent with the browser it drives, because a mismatch between the two is its own tell. What has to agree, and how the browser timezone is derived from the exit, is in configuration and the timezone-proxy page.
import random, time
with InvisiblePlaywright(seed=42, proxy=proxy, timezone="auto") as browser:
page = browser.new_page()
for city in CITIES:
for category in CATEGORIES:
crawl_filter(page, city, category)
time.sleep(random.uniform(20, 45)) # pace the matrix, do not sprint itThe split is worth stating plainly: the browser makes each request look like a person, and your loop's rhythm decides whether the sequence of requests does. Neither substitutes for the other.
A directory crawl is a form you drive, contact fields you un-obfuscate one technique at a time, and a filtered pagination you walk to its real end, all under a single pinned identity so the whole matrix reads as one visitor. The fingerprint keeps the sweep coherent and makes the reveal clicks trustworthy; the pacing and the proxy spread keep the sheer volume from undoing that. Build it as three honest loops with a seed on the outside and a sleep on the inside, and the hard parts become mechanical.
Why does the directory show nothing until I search? Because listings are gated behind a location-plus-category form, and the results only exist once both filters are set. Drive the form, wait for a real result element, then read.
How do I get a phone number that is rendered as an image? You cannot read it as text
from the DOM. Extract the image src or data: URI and run an optical-character step
outside the browser. If instead the digits are HTML entities, read inner_text(), which is
already decoded.
The email only appears after clicking, and my click does nothing. The reveal control is
checking that the click was user-generated. A real browser dispatching a trusted event
gets the address; a synthetic DOM event is ignored. See the note on isTrusted.
How do I paginate without losing the filter? Follow the site's own next control instead
of building ?page=N by hand, and keep the pagination loop strictly inside the city and
category loops so the active search is never lost.
Does a stable fingerprint let me crawl the whole directory safely? It makes the whole sweep look like one consistent visitor, which is the coherence problem solved. It does nothing about volume: pacing and proxy spread still have to come from your loop.
How do I make the crawl reproducible when it breaks on one category? Pass a fixed
seed. The same seed gives the same browser every run, so you replay the exact failing
session instead of hoping a new random identity reproduces it.
- This project's own API for launching a seed-reproducible browser and driving stock Playwright, as documented on the quickstart and configuration pages.
- The behaviour of trusted versus synthetic input events, from this project's notes on why
a reveal click needs
isTrusted. - The release gate that flagged our own harness for request velocity, which is where the pacing caveat comes from.
See also: walking paginated result sets, scraping content that changes by location, and why a click needs to be trusted.
Written while maintaining invisible_playwright, a Firefox patched at the C++ level driven by stock Playwright. The nested-loop shape and the honest split between fingerprint and volume are both mistakes I made before I wrote them down.
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