From 55036899a947676766134cc28e748c1cee84a381 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 15:24:48 +0000 Subject: [PATCH 1/3] Update browsers/termination.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- browsers/termination.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/browsers/termination.mdx b/browsers/termination.mdx index e32f04ae..fd4796a6 100644 --- a/browsers/termination.mdx +++ b/browsers/termination.mdx @@ -4,9 +4,9 @@ title: "Termination & Timeouts" Kernel browsers should be terminated after you're done with them. - - Using Playwright/Puppeteer's method `browser.close()` does not delete the browser. Use one of the methods below to delete the browser. - + + Using Playwright/Puppeteer's method `browser.close()` does not delete the browser. Use one of the methods below to delete the browser. Calling `browser.close()` before deleting the Kernel browser will shut down Chromium, causing profile saving to fail. + ## Deleting a browser via session ID From fc53410ee32d654f9e0b1794b2ff7ba46f711700 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:15:02 +0000 Subject: [PATCH 2/3] Update browsers/termination.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- browsers/termination.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/browsers/termination.mdx b/browsers/termination.mdx index fd4796a6..e32f04ae 100644 --- a/browsers/termination.mdx +++ b/browsers/termination.mdx @@ -4,9 +4,9 @@ title: "Termination & Timeouts" Kernel browsers should be terminated after you're done with them. - - Using Playwright/Puppeteer's method `browser.close()` does not delete the browser. Use one of the methods below to delete the browser. Calling `browser.close()` before deleting the Kernel browser will shut down Chromium, causing profile saving to fail. - + + Using Playwright/Puppeteer's method `browser.close()` does not delete the browser. Use one of the methods below to delete the browser. + ## Deleting a browser via session ID From 21bbbe104df89ebd477c2991cbd808d28981a4a3 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:17:48 +0000 Subject: [PATCH 3/3] Update browsers/profiles.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- browsers/profiles.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/browsers/profiles.mdx b/browsers/profiles.mdx index 004ddb23..14306a0f 100644 --- a/browsers/profiles.mdx +++ b/browsers/profiles.mdx @@ -69,6 +69,8 @@ After using a browser with `save_changes: true`, closing the browser will save c Calling `browser.close()` does **not** save the profile state. You **must** explicitly delete the Kernel browser (or let the browser [timeout](/browsers/termination#automatic-deletion-via-timeout)) to persist the Profile. + +Additionally, calling `browser.close()` before deleting the Kernel browser will shut down Chromium, causing profile saving to fail.