Is popup window recording supported in OpenReplay v16 integrated in react?
Summary:
OpenReplay is not recording activity in a child window (popup). Only the parent window is captured.
Current Behavior:
-
Parent window is recorded when
start()is called. -
Popup window is not recorded at all.
Reason / Analysis:
-
start(true)is executed in the parent window context, so tracking restarts only in the parent, not the popup. -
The popup runs in a separate JavaScript context and does not initialize its own OpenReplay tracker instance.
-
Attempting to initialize OpenReplay in the popup results in a “one tracker instance has been initialized already” error, suggesting a limitation in OpenReplay v16 regarding multiple tracker instances across windows.