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