From 612bb022a5bd5d68c91d41fe2416f374b9839f1a Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 26 Feb 2021 06:01:10 +0100 Subject: [PATCH] docs(intro): fixed wrong Python option (#5625) --- docs/src/intro-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/intro-python.md b/docs/src/intro-python.md index a6d3bc4e66..28e6d25a57 100644 --- a/docs/src/intro-python.md +++ b/docs/src/intro-python.md @@ -67,7 +67,7 @@ with sync_playwright() as p: By default, Playwright runs the browsers in headless mode. To see the browser UI, pass the `headless=False` flag while launching the browser. You can also use [`option: slowMo`] to slow down execution. Learn more in the debugging tools [section](./debug.md). ```py -firefox.launch(headless=False, slowMo=50) +firefox.launch(headless=False, slow_mo=50) ``` ## Record scripts