You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Something doesn't work like it should? Tell us!
3
+
title: "[Bug]: "
4
+
labels: []
5
+
body:
6
+
- type: markdown
7
+
attributes:
8
+
value: |
9
+
Thanks for taking the time to fill out this bug report!
10
+
- type: input
11
+
id: version
12
+
attributes:
13
+
label: Playwright version
14
+
description: Which version of of Playwright are you using?
15
+
placeholder: ex. 1.12.0
16
+
validations:
17
+
required: true
18
+
- type: dropdown
19
+
id: operating-system
20
+
attributes:
21
+
label: Operating system
22
+
multiple: true
23
+
description: What operating system are you running Playwright on?
24
+
options:
25
+
- Windows
26
+
- MacOS
27
+
- Linux
28
+
- type: dropdown
29
+
id: browsers
30
+
attributes:
31
+
label: What browsers are you seeing the problem on?
32
+
multiple: true
33
+
options:
34
+
- Chromium
35
+
- Firefox
36
+
- WebKit
37
+
- type: textarea
38
+
id: other-information
39
+
attributes:
40
+
label: Other information
41
+
description: ex. Python version, Linux distribution etc.
42
+
- type: textarea
43
+
id: what-happened
44
+
attributes:
45
+
label: What happened? / Describe the bug
46
+
description: Also tell us, what did you expect to happen?
47
+
placeholder: Tell us what you see!
48
+
validations:
49
+
required: true
50
+
- type: textarea
51
+
id: reproducible
52
+
attributes:
53
+
label: Code snippet to reproduce your bug
54
+
description: Help us help you! Put down a short code snippet that illustrates your bug and that we can run and debug locally. This will be automatically formatted into code, so no need for backticks.
55
+
render: shell
56
+
placeholder: |
57
+
from playwright.sync_api import sync_playwright
58
+
59
+
with sync_playwright() as p:
60
+
browser = p.chromium.launch()
61
+
page = browser.new_page()
62
+
# ...
63
+
browser.close()
64
+
- type: textarea
65
+
id: logs
66
+
attributes:
67
+
label: Relevant log output
68
+
description: Please copy and paste any relevant log output like [Playwright debug logs](https://playwright.dev/docs/debug#verbose-api-logs). This will be automatically formatted into code, so no need for backticks.
0 commit comments