clj-chrome-devtools.commands.headless-experimental

This domain provides experimental commands only supported in headless mode.

begin-frame

(begin-frame)(begin-frame {:as params, :keys [frame-time-ticks interval no-display-updates screenshot]})(begin-frame connection {:as params, :keys [frame-time-ticks interval no-display-updates screenshot]})

Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a screenshot from the resulting frame. Requires that the target was created with enabled BeginFrameControl. Designed for use with –run-all-compositor-stages-before-draw, see also https://goo.gl/3zHXhB for more background.

Parameters map keys:

Key Description
:frame-time-ticks Timestamp of this BeginFrame in Renderer TimeTicks (milliseconds of uptime). If not set,

the current time will be used. (optional) :interval | The interval between BeginFrames that is reported to the compositor, in milliseconds. Defaults to a 60 frames/second interval, i.e. about 16.666 milliseconds. (optional) :no-display-updates | Whether updates should not be committed and drawn onto the display. False by default. If true, only side effects of the BeginFrame will be run, such as layout and animations, but any visual updates may not be visible on the display or in screenshots. (optional) :screenshot | If set, a screenshot of the frame will be captured and returned in the response. Otherwise, no screenshot will be captured. Note that capturing a screenshot can fail, for example, during renderer initialization. In such a case, no screenshot data will be returned. (optional)

Return map keys:

Key Description
:has-damage Whether the BeginFrame resulted in damage and, thus, a new frame was committed to the

display. Reported for diagnostic uses, may be removed in the future. :screenshot-data | Base64-encoded image data of the screenshot, if one was requested and successfully taken. (Encoded as a base64 string when passed over JSON) (optional)

disable

(disable)(disable {:as params, :keys []})(disable connection {:as params, :keys []})

Disables headless events for the target.

enable

(enable)(enable {:as params, :keys []})(enable connection {:as params, :keys []})

Enables headless events for the target.