playwright/.github/ISSUE_TEMPLATE/regression.md

33 lines
764 B
Markdown
Raw Normal View History

2020-01-31 05:21:59 +03:00
---
2020-01-31 05:32:05 +03:00
name: REGRESSION
2020-01-31 05:21:59 +03:00
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?]
2020-01-31 05:21:59 +03:00
- 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:
```javascript
const {chromium, webkit, firefox} = require('playwright');
(async () => {
const browser = await chromium.launch();
// ...
})();
```
**Describe the bug**
Add any other details about the problem here.