-
Notifications
You must be signed in to change notification settings - Fork 904
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update GH issue templates (#2024)
chore: update issue templates
- Loading branch information
Showing
4 changed files
with
70 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
contact_links: | ||
- name: Join our Slack community | ||
url: https://aka.ms/playwright-slack | ||
- name: Join our Discord Server | ||
url: https://aka.ms/playwright/discord | ||
about: Ask questions and discuss with other community members |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Report regression | ||
about: Functionality that used to work and does not any more | ||
title: "[REGRESSION]: " | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Context:** | ||
- GOOD Playwright Version: [what Playwright version worked nicely?] | ||
- BAD Playwright Version: [what Playwright version doesn't work any more?] | ||
- Operating System: [e.g. Windows, Linux or Mac] | ||
- Extra: [any specific details about your environment] | ||
|
||
**Code Snippet** | ||
|
||
Help us help you! Put down a short code snippet that illustrates your bug and | ||
that we can run and debug locally. For example: | ||
|
||
```python | ||
from playwright.sync_api import sync_playwright | ||
with sync_playwright() as p: | ||
browser = p.chromium.launch() | ||
page = browser.new_page() | ||
# ... | ||
browser.close() | ||
``` | ||
|
||
**Describe the bug** | ||
|
||
Add any other details about the problem here. |