From 75c5c2360fa5a4bfd28a45f669736a9fd7e61258 Mon Sep 17 00:00:00 2001 From: "Tommy D. Rossi" Date: Fri, 26 Dec 2025 19:14:16 +0100 Subject: [PATCH] Update editor.ts --- playwriter/src/editor.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playwriter/src/editor.ts b/playwriter/src/editor.ts index a2d526f..31c0aed 100644 --- a/playwriter/src/editor.ts +++ b/playwriter/src/editor.ts @@ -27,6 +27,9 @@ export interface EditResult { * A class for viewing and editing web page scripts via Chrome DevTools Protocol. * Provides a Claude Code-like interface: list, read, edit, grep. * + * Edits are in-memory only and persist until page reload. They modify the running + * V8 instance but are not saved to disk or server. + * * @example * ```ts * const cdp = await getCDPSession({ page })