We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b7968f commit 7b09eefCopy full SHA for 7b09eef
.github/ISSUE_TEMPLATE/bug.md
@@ -18,6 +18,14 @@ assignees: ''
18
19
Help us help you! Put down a short code snippet that illustrates your bug and
20
that we can run and debug locally.
21
+
22
+```python
23
+from playwright.sync_api import sync_playwright
24
+with sync_playwright() as p:
25
+ browser = p.chromium.launch()
26
+ page = browser.new_page()
27
+ # ...
28
+ browser.close()
29
```
30
31
**Describe the bug**
0 commit comments