From 90e3194482cb025c5a1111f2c5e6b5302f921c98 Mon Sep 17 00:00:00 2001 From: Tom Sparrow <793763+sparrowt@users.noreply.github.com> Date: Tue, 29 Nov 2022 20:54:18 +0000 Subject: [PATCH] docs(debug.md): clarify what slowMo number means (#18788) --- docs/src/debug.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/debug.md b/docs/src/debug.md index e76091516b..fe8607493e 100644 --- a/docs/src/debug.md +++ b/docs/src/debug.md @@ -251,7 +251,7 @@ prevent the Playwright script from executing any further. Playwright runs browsers in headless mode by default. To change this behavior, use `headless: false` as a launch option. You can also use the [`option: slowMo`] option -to slow down execution and follow along while debugging. +to slow down execution (by N milliseconds per operation) and follow along while debugging. ```js await chromium.launch({ headless: false, slowMo: 100 }); // or firefox, webkit