From 9ac7318506ac858b3465e9b4ede8ad75fbbcee11 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Wed, 6 Apr 2022 09:04:31 +0200 Subject: [PATCH] fix: disable bfcache in the launcher (#8196) Puppeteer has problems handling navigations to pages that are restored from the back-forward cache. Let's disable it until we have the support and test coverage. Issues: #8182 --- src/node/Launcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/Launcher.ts b/src/node/Launcher.ts index 6d5865bbd7809..4abae70c734b6 100644 --- a/src/node/Launcher.ts +++ b/src/node/Launcher.ts @@ -213,7 +213,7 @@ class ChromeLauncher implements ProductLauncher { '--disable-default-apps', '--disable-dev-shm-usage', '--disable-extensions', - '--disable-features=Translate', + '--disable-features=Translate,BackForwardCache', '--disable-hang-monitor', '--disable-ipc-flooding-protection', '--disable-popup-blocking',