Privacy helpers
Privacy helpers control how specific UI elements appear in session replay.
Screeb automatically masks password inputs and sensitive fields. Use helpers when your app displays custom sensitive content.
using Screeb.Maui;
emailEntry.ScreebMaskText();
paymentSection.ScreebNoCapture();
checkoutButton.ScreebId("checkout_button");
| Helper | Description |
|---|---|
ScreebMaskText() | Masks text content in session replay. |
ScreebNoCapture() | Excludes the element from session replay capture. |
ScreebId("stable_id") | Sets a stable element ID for targeting and replay context. |