From df406991502c0ff0df52e6a93a6c64178bfa50ca Mon Sep 17 00:00:00 2001 From: Blake Byrnes Date: Tue, 18 Jul 2023 16:24:59 -0400 Subject: [PATCH] fix(core): fix user profile tests (#235) --- core/lib/Session.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lib/Session.ts b/core/lib/Session.ts index 05561284c..03fac303b 100644 --- a/core/lib/Session.ts +++ b/core/lib/Session.ts @@ -339,6 +339,7 @@ export default class Session if (!this.hasLoadedUserProfile && this.userProfile?.storage) { page = await this.browserContext.newPage({ groupName: 'session', + runPageScripts: false, enableDomStorageTracker: false, }); await UserProfile.installStorage(this, page);