From a732e7ac8f87499b1d3aa3ba420ff0d2d519da2f Mon Sep 17 00:00:00 2001 From: Henrik Skupin Date: Fri, 8 Jan 2021 10:11:41 +0100 Subject: [PATCH] chore: disable experimental Firefox cookie feature sameSite=Lax by default (#6690) --- src/node/Launcher.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/node/Launcher.ts b/src/node/Launcher.ts index 5fe39052..247d1342 100644 --- a/src/node/Launcher.ts +++ b/src/node/Launcher.ts @@ -517,6 +517,9 @@ class FirefoxLauncher implements ProductLauncher { // jest-puppeteer asserts that no error message is emitted by the console 'network.cookie.cookieBehavior': 0, + // Disable experimental feature that is only available in Nightly + 'network.cookie.sameSite.laxByDefault': false, + // Do not prompt for temporary redirects 'network.http.prompt-temp-redirect': false,