For AI agents: a documentation index is available at /llms.txt
Skip to main content

PageEventMap

Maps each Page event name to the payload delivered to its listeners. Backed by a GraphQL subscription that is opened lazily on first listen.

Properties

PropertyTypeDescription
consoleConsoleMessageStreams console output as the page emits it. Mirrors page.on('console').
requestRequestResponseStreams each network request as it is issued. Mirrors page.on('request'). The optional filters mirror the request() mutation.
responseResponseResponseStreams each network response as it is received. Mirrors page.on('response'). The response body is NOT fetched by default (streaming many bodies is expensive); request the body field in your selection set to trigger a per-event fetch.