fix: disable inline images

This commit is contained in:
Rohit Rajan
2025-09-16 22:48:15 +05:30
parent 02f09e0a45
commit ad2830a9b6

View File

@@ -380,6 +380,7 @@ export class RemoteBrowser {
); );
await this.currentPage.mouse.wheel(data.deltaX, data.deltaY); await this.currentPage.mouse.wheel(data.deltaX, data.deltaY);
await this.currentPage.waitForLoadState("networkidle", { timeout: 5000 });
const scrollInfo = await this.currentPage.evaluate(() => ({ const scrollInfo = await this.currentPage.evaluate(() => ({
x: window.scrollX, x: window.scrollX,
@@ -1590,7 +1591,7 @@ export class RemoteBrowser {
} }
return window.rrwebSnapshot.snapshot(document, { return window.rrwebSnapshot.snapshot(document, {
inlineImages: true, inlineImages: false,
collectFonts: true, collectFonts: true,
}); });
}); });