docs(intro): fixed wrong Python option (#5625)

This commit is contained in:
Max Schmitt 2021-02-26 06:01:10 +01:00 committed by GitHub
parent 992f808210
commit 612bb022a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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