All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Security
Security
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter

Browser Run - Browser Rendering Playwright GA, Stagehand support (Beta), and higher limits

9mo ago

Source

CloudflareBrowser Run - Browser Rendering Playwright GA, Stagehand support (Beta), and higher limitscloudflare.com
Snippet from the RSS feed
We’re shipping three updates to Browser Rendering: Playwright support is now Generally Available and synced with Playwright v1.55 , giving you a stable foundation for critical automation and AI-agent workflows. We’re also adding Stagehand support (Beta) so you can combine code with natural language instructions to build more resilient automations. Finally, we’ve tripled limits for paid plans across both the REST API and Browser Sessions to help you scale. To get started with Stagehand, refer to the Stagehand example that uses Stagehand and Workers AI to search for a movie on this example movie directory , extract its details using natural language (title, year, rating, duration, and genre), and return the information along with a screenshot of the webpage. const stagehand = new Stagehand ( { env : "LOCAL" , localBrowserLaunchOptions : { cdpUrl : endpointURLString ( env . BROWSER ) }, llmClient : new WorkersAIClient ( env . AI ) , verbose : 1 , } ) ; await stagehand . init () ; const page = stagehand . page ; await page . goto ( " ) ; // if search is a multi-step action, stagehand will return an array of actions it needs to act on const actions = await page . observe ( 'Search for "Furiosa"' ) ; for ( const action of actions ) await page . act ( action ) ; await page . act ( "Click the search result" ) ; // normal playwright functions work as expected await page . waitForSelector ( ".info-wrapper .cast" ) ; let movieInfo = await page . extract ( { instruction : "Extract movie information" , schema : z . object ( { title : z . string () , year : z . number () , rating : z . number () , genres : z . array ( z . string ()) , duration : z . number () . describe ( "Duration in minutes" ) , } ) , } ) ; await stagehand . close ()

You might also wanna read

Migrating from Playwright to Chrome DevTools Protocol for Enhanced Browser Control

The article details a technical team's decision to migrate from Playwright to Chrome DevTools Protocol (CDP) for browser automation. The aut

browser-use.com·10mo ago

BrowserBook: An IDE for Deterministic Playwright-Based Browser Automation

BrowserBook is a new IDE (Integrated Development Environment) for writing and debugging Playwright-based web automations. Created by a Y Com

news.ycombinator.com·6mo ago

Intuned: AI-powered browser automation platform generates production-ready Playwright code for developers

Intuned is a browser automation platform for developers that uses AI to generate production-ready Playwright code. Users describe the scrape

Product Hunt·2mo ago

BrowserAct: Open-source browser automation layer for AI agents to handle real web complexities

BrowserAct is an open-source browser automation tool designed for AI agents, helping them navigate real-world web complexities like login st

Product Hunt·18d ago

Skyvern AI Tool Now Writes and Maintains Its Own Code for Browser Automation

Skyvern, an open-source AI tool for browser automation, has been upgraded to write and maintain its own code using AI. The new capability al

skyvern.com·8mo ago

Browser Rendering Launches /crawl Endpoint for Automated Website Crawling

Browser Rendering has launched a new /crawl endpoint in open beta that allows developers to crawl entire websites with a single API call. Th

developers.cloudflare.com·3mo ago

Browser Rendering Launches /crawl Endpoint for Automated Website Crawling

Browser Rendering has launched a new /crawl endpoint in open beta that allows developers to crawl entire websites with a single API call. Th

Cloudflare·3mo ago

Comments

Sign in to join the conversation.

No comments yet. Be the first.