Browser API overview
Choose the right integration path.
Overview →Browser API
Connect Playwright to a Chromium CDP endpoint when your Playwright version supports connectOverCDP. Treat this as CDP interoperability and validate the workflow against your build.
Guidance
const { chromium } = require("playwright"); const browser = await chromium.connectOverCDP("http://127.0.0.1:PORT"); const contexts = browser.contexts(); // Resolve the correct page/target for the current Social Browser workspace. Identity
Related
Choose the right integration path.
Overview →Set up the API/CDP client and discovery flow.
Setup →Use practical examples and target-selection patterns.
Examples →