Skip to content

Commit 7b09eef

Browse files
authored
chore: fix bug reporting template (#1288)
1 parent 3b7968f commit 7b09eef

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ assignees: ''
1818

1919
Help us help you! Put down a short code snippet that illustrates your bug and
2020
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()
2129
```
2230

2331
**Describe the bug**

0 commit comments

Comments
 (0)