Skip to main content
Version: Ionic SDK

Session replay

Session Replay captures the full DOM of your Ionic app โ€” including Screeb interactions โ€” so you can replay sessions in the Screeb dashboard.

How it worksโ€‹

Session Replay is built into @screeb/sdk-browser and runs automatically once enabled in your workspace settings. No additional Ionic-specific code is needed.

Start / stop programmaticallyโ€‹

import { Component } from "@angular/core";
import { ScreebService } from "@screeb/sdk-angular";

constructor(private screeb: ScreebService) {}

startReplay() {
this.screeb.sessionReplayStart();
}

stopReplay() {
this.screeb.sessionReplayStop();
}

Enable in workspace settingsโ€‹

Session Replay must be enabled in your Screeb workspace settings before it will record sessions.

note

Session Replay is automatically disabled when Consent Exemption Mode is active.

See Privacy helpers to control how specific elements appear in recordings.