playwright/.github/ISSUE_TEMPLATE/bug.md

34 lines
754 B
Markdown
Raw Normal View History

2020-01-31 05:21:59 +03:00
---
2020-01-31 05:32:05 +03:00
name: Bug Report
2020-01-31 05:21:59 +03:00
about: Something doesn't work like it should? Tell us!
title: "[BUG]"
labels: ''
assignees: ''
---
**Context:**
- Playwright Version: [what Playwright version do you use?]
2020-01-31 05:21:59 +03:00
- Operating System: [e.g. Windows, Linux or Mac]
- Node.js version: [e.g. 10.12, 10.14]
2020-04-28 20:17:13 +03:00
- Browser: [e.g. All, Chromium, Firefox, WebKit]
2020-01-31 05:21:59 +03:00
- 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.