Chromium AutomatonLightweight Chromium-only automation
CDP-powered, Playwright-style API without the framework baggage.
CDP-powered, Playwright-style API without the framework baggage.
import { chromium, expect } from "@quitecode/chromium-automaton";
const browser = await chromium.launch({ headless: true });
const page = await browser.newPage();
await page.goto("https://example.com");
await expect(page).element("h1").toHaveText(/Example Domain/);
await browser.close();