docs(intro): fixed wrong Python option (#5625)
This commit is contained in:
parent
992f808210
commit
612bb022a5
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue