Represents a collection of events that occurred during an operation, such as console messages, errors, field executions, or network requests. These events are collected throughout the operation and returned as a batch for analysis. To get real-time updates, use subscriptions instead.

Definition

object Events {
  console: [ConsoleMessage]
  error: [Error]
  execution: [Execution]
  pageError: [Error]
  request: [Request]
  response: [Response]
}

Fields

console

[ConsoleMessage] A list of console messages logged during the operation.

error

[Error] A list of errors that occurred.

execution

[Execution] A list of field execution events that occurred during the operation.

pageError

[Error] Errors specifically related to page loading or execution.

request

[Request] Network requests made.

response

[Response] Network responses received.