Skip to main content
Example:
replay = session.replay()
replay.save(f"{session.session_id}_replay.mp4")
Note that the replay is only available after the session has been stopped.
Also you need to perform at least one action for the replay to be available.

Returns

MP4Replay: The replay data in MP4 format.

Raises

  • ValueError: If the session hasn’t been started yet (no session_id available).
I