docs(python): improve the typing example with the pytest plugin (#33296)
This commit is contained in:
parent
9707e97867
commit
7e00112fec
|
@ -99,7 +99,7 @@ See [Running Tests](./running-tests.md) for general information on `pytest` opti
|
|||
|
||||
## Examples
|
||||
|
||||
### Configure Mypy typings for auto-completion
|
||||
### Configure typings for auto-completion
|
||||
|
||||
```py title="test_my_application.py"
|
||||
from playwright.sync_api import Page
|
||||
|
@ -109,6 +109,8 @@ def test_visit_admin_dashboard(page: Page):
|
|||
# ...
|
||||
```
|
||||
|
||||
If you're using VSCode with Pylance, these types can be inferred by enabling the `python.testing.pytestEnabled` setting so you don't need the type annotation.
|
||||
|
||||
### Configure slow mo
|
||||
|
||||
Run tests with slow mo with the `--slowmo` argument.
|
||||
|
|
Loading…
Reference in New Issue