Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
result = await page.prompt( "What is the main heading on this page?", schema={"heading": {"type": "string"}}, ) print(result)
const result = await page.prompt( "What is the main heading on this page?", { heading: { type: "string" } }, ); console.log(result);
prompt
str
string
schema
dict
Record<string, unknown>
model
dict | list | str | None
Record<string, unknown> | unknown[] | string | null
Was this page helpful?