Readme

Browserbase

Browserbase offers a reliable, high performance serverless developer platform to run, manage, and monitor headless browsers at scale. Leverage our infrastructure to power your web automation and AI agents.

Get started with Browserbase for free here.

If you have any questions, reach out to developer@browserbase.com.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import puppeteer from "https://deno.land/x/puppeteer@16.2.0/mod.ts";
const browser = await puppeteer.connect({
browserWSEndpoint: `wss://connect.browserbase.com?apiKey=${Deno.env.get("BROWSERBASE_API_KEY")}`,
});
const pages = await browser.pages();
const page = pages[0];
await page.goto("https://www.val.town");
const el = await page.waitForSelector("h1");
const title = await el?.evaluate(el => el.textContent);
await page.close();
await browser.close();
console.log(title);
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
September 18, 2024