页面加载中...
Stripe 旗下 Sidecoin 出品的 AI 浏览器自动化工具。自然语言直接操控网页——点击、填写、提取,无需写代码。基于 Playwright,AI 原生设计。
AI 原生浏览器自动化——用自然语言操控网页。
Stagehand 是一种全新的浏览器自动化范式:不写 CSS 选择器,不写 XPath,直接告诉 Agent 你要做什么。
三大核心原语:
底层基于 Playwright,但把选择器的概念完全隐藏——AI 自动理解页面结构并定位元素。
npm install stagehand # 需要 LLM API Key export OPENAI_API_KEY=your-key
import { Stagehand } from 'stagehand'; const stagehand = new Stagehand({ env: 'LOCAL' }); await stagehand.init(); await stagehand.page.goto('https://example.com'); // 自然语言操作 await stagehand.page.act('click the search button'); await stagehand.page.act('type "AI Agent" in the search box'); // 自然语言提取 const prices = await stagehand.page.extract({ instruction: 'extract all product prices', schema: { prices: { type: 'array', items: { type: 'string' } } } });
版本
v1.4.0
作者
sideco-dev
平台
发布时间
2026年3月25日