Objects
ScreencastFrame
Represents a single frame from a page screencast. Contains the image data and metadata about the frame’s context.
Definition
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,/9j/4AAQSkZJRgABAQ..."
(example, actual data is much longer)
metadata
: ScreencastFrameMetadata!
Metadata associated with this screencast frame, providing context such as viewport dimensions and scroll offsets.
See ScreencastFrameMetadata
for details.