You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I m trying to record Iframe content with main DOM , IFrames are may cross-origin, by above configuration of rrweb.record recordCrossOriginIframes is not working recording iframe content, it shows black white space where the iframe is loaded
The text was updated successfully, but these errors were encountered:
@harshil-dholakiya are you initializing rrweb.record(...) inside the cross-origin iframe as well? you'll need to record on that app for rrweb to send events to the parent rrweb instance.
_this.recorder = rrweb.record({
emit(event) {
_this.events.push(event);
},
plugins: [
getRecordConsolePlugin()
],
recordCrossOriginIframes : true,
});
I m trying to record Iframe content with main DOM , IFrames are may cross-origin, by above configuration of rrweb.record recordCrossOriginIframes is not working recording iframe content, it shows black white space where the iframe is loaded
The text was updated successfully, but these errors were encountered: