Skip to content

Commit 902580b

Browse files
authored
chore: update issues template
1 parent b289bb7 commit 902580b

File tree

7 files changed

+156
-0
lines changed

7 files changed

+156
-0
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug
3+
about: Something doesn't work like it should? Tell us!
4+
title: "[BUG]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Context:**
11+
- PlayWright Version: [what PlayWright version do you use?]
12+
- Operating System: [e.g. Windows, Linux or Mac]
13+
- Extra: [any specific details about your environment]
14+
15+
**Code Snippet**
16+
17+
Help us help you! Put down a short code snippet that illustrates your bug and
18+
that we can run and debug locally. For example:
19+
20+
```javascript
21+
const {chromium, webkit, firefox} = require('playwright');
22+
23+
(async () => {
24+
const browser = await chromium.launch();
25+
// ...
26+
})();
27+
```
28+
29+
**Describe the bug**
30+
31+
Add any other details about the problem here.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Context:**
11+
- PlayWright Version: (please tell us what PlayWright version do you use)
12+
- Operating System: [e.g. Windows, Linux or Mac]
13+
- Extra: [any other specific details about your environment]
14+
15+
**Code Snippet**
16+
17+
Help us help you! Please put down a short code snippet that illustrates your bug and
18+
that we can run and debug locally. For example:
19+
20+
```javascript
21+
const {chromium, webkit, firefox} = require('playwright');
22+
23+
(async () => {
24+
const browser = await chromium.launch();
25+
// ...
26+
})();
27+
```
28+
29+
**Describe the bug**
30+
31+
Add any other details about the problem here.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Feature request
3+
about: Request new features to be added
4+
title: "[Feature]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Let us know what functionality you'd like to see in PlayWright and what is your usecase.
11+
Do you think others might need this as well?

.github/ISSUE_TEMPLATE/question.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Question
3+
about: Feel free to ask us your questions!
4+
title: "[Question]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+

.github/ISSUE_TEMPLATE/regression.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Regression
3+
about: Functionality that used to work and does not any more
4+
title: "[REGRESSION]: "
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Context:**
11+
- GOOD PlayWright Version: [what PlayWright version worked nicely?]
12+
- BAD PlayWright Version: [what PlayWright version doesn't work any more?]
13+
- Operating System: [e.g. Windows, Linux or Mac]
14+
- Extra: [any specific details about your environment]
15+
16+
**Code Snippet**
17+
18+
Help us help you! Put down a short code snippet that illustrates your bug and
19+
that we can run and debug locally. For example:
20+
21+
```javascript
22+
const {chromium, webkit, firefox} = require('playwright');
23+
24+
(async () => {
25+
const browser = await chromium.launch();
26+
// ...
27+
})();
28+
```
29+
30+
**Describe the bug**
31+
32+
Add any other details about the problem here.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Report a bug
3+
about: Something doesn't work like it should? Tell us!
4+
title: "[BUG]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Context:**
11+
- PlayWright Version: [what PlayWright version do you use?]
12+
- Operating System: [e.g. Windows, Linux or Mac]
13+
- Extra: [any specific details about your environment]
14+
15+
**Code Snippet**
16+
17+
Help us help you! Please put down a short code snippet that illustrates your bug and
18+
that we can run and debug locally. For example:
19+
20+
```javascript
21+
const {chromium, webkit, firefox} = require('playwright');
22+
23+
(async () => {
24+
const browser = await chromium.launch();
25+
// ...
26+
})();
27+
```
28+
29+
**Describe the bug**
30+
31+
Add any other details about the problem here.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Report a regression
3+
about: Functionality that used to work and does not any more
4+
title: "[REGRESSION]: "
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+

0 commit comments

Comments
 (0)