Browser Runtime Quickstart
1 import { Bctrl } from "@bctrl/sdk"; 2 3 const client = new Bctrl({ 4 apiKey: process.env.BCTRL_API_KEY!, 5 }); 6 7 const workspace = await client.workspaces.create({ 8 name: "quickstart", 9 }); 10 11 const runtime = await workspace.runtimes.browser("main").playwright({ 12 launch: { 13 mode: "ephemeral", 14 }, 15 }); 16 17 await runtime.page.goto("https://example.com"); 18 await runtime.stop();

