We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab5725 commit 08b19bdCopy full SHA for 08b19bd
packages/docs/v3/first-steps/installation.mdx
@@ -69,12 +69,12 @@ async function main() {
69
await page.goto("https://example.com");
70
71
// Act on the page
72
- await stagehand.act("Click the sign in button");
+ await stagehand.act("Click the learn more button");
73
74
// Extract structured data
75
- const title = await stagehand.extract("extract the page title", z.string());
+ const description = await stagehand.extract("extract the description", z.string());
76
77
- console.log(title);
+ console.log(description);
78
await stagehand.close();
79
}
80
0 commit comments