Represents a single frame from a page screencast. Contains the image data and metadata about the frame’s context.

Definition

object ScreencastFrame {
  data: String!
  metadata: ScreencastFrameMetadata!
}

Fields

data

String! The image data for the screencast frame, Base64 encoded. This is typically a JPEG or PNG image. Example: "data:image/jpeg;base64,<payload>".

metadata

ScreencastFrameMetadata! Metadata associated with this screencast frame, providing context such as viewport dimensions and scroll offsets. See ScreencastFrameMetadata for details.