|
| 1 | +name: Bug Report 🪲 |
| 2 | +description: Create a bug report to help us improve |
| 3 | +title: '[Bug]: ' |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + # Please follow these steps first: |
| 9 | + - type: markdown |
| 10 | + attributes: |
| 11 | + value: | |
| 12 | + ## Troubleshoot |
| 13 | + If Playwright is not behaving the way you expect, we'd ask you to look at the [documentation](https://playwright.dev/python/docs/intro) and search the issue tracker for evidence supporting your expectation. |
| 14 | + Please make reasonable efforts to troubleshoot and rule out issues with your code, the configuration, or any 3rd party libraries you might be using. |
| 15 | + Playwright offers [several debugging tools](https://playwright.dev/python/docs/debug) that you can use to troubleshoot your issues. |
| 16 | + - type: markdown |
| 17 | + attributes: |
| 18 | + value: | |
| 19 | + ## Ask for help through appropriate channels |
| 20 | + If you feel unsure about the cause of the problem, consider asking for help on for example [StackOverflow](https://stackoverflow.com/questions/ask) or our [Discord channel](https://aka.ms/playwright/discord) before posting a bug report. The issue tracker is not a help forum. |
| 21 | + - type: markdown |
| 22 | + attributes: |
| 23 | + value: | |
| 24 | + ## Make a minimal reproduction |
| 25 | + To file the report, you will need a GitHub repository with a minimal (but complete) example and simple/clear steps on how to reproduce the bug. |
| 26 | + The simpler you can make it, the more likely we are to successfully verify and fix the bug. |
| 27 | + - type: markdown |
| 28 | + attributes: |
| 29 | + value: | |
| 30 | + > [!IMPORTANT] |
| 31 | + > Bug reports without a minimal reproduction will be rejected. |
| 32 | +
|
| 33 | + --- |
| 34 | + - type: input |
| 35 | + id: version |
| 36 | + attributes: |
| 37 | + label: Version |
| 38 | + description: | |
| 39 | + The version of Playwright you are using. |
| 40 | + Is it the [latest](https://github.com/microsoft/playwright-python/releases)? Test and see if the bug has already been fixed. |
| 41 | + placeholder: ex. 1.41.1 |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + - type: textarea |
| 45 | + id: reproduction |
| 46 | + attributes: |
| 47 | + label: Steps to reproduce |
| 48 | + description: Please link to a repository with a minimal reproduction and describe accurately how we can reproduce/verify the bug. |
| 49 | + value: | |
| 50 | + Example steps (replace with your own): |
| 51 | + 1. Clone my repo at https://github.com/<myuser>/example |
| 52 | + 2. pip install -r requirements.txt |
| 53 | + 3. python test.py |
| 54 | + 4. You should see the error come up |
| 55 | + validations: |
| 56 | + required: true |
| 57 | + - type: textarea |
| 58 | + id: expected |
| 59 | + attributes: |
| 60 | + label: Expected behavior |
| 61 | + description: A description of what you expect to happen. |
| 62 | + placeholder: I expect to see X or Y |
| 63 | + validations: |
| 64 | + required: true |
| 65 | + - type: textarea |
| 66 | + id: what-happened |
| 67 | + attributes: |
| 68 | + label: Actual behavior |
| 69 | + description: | |
| 70 | + A clear and concise description of the unexpected behavior. |
| 71 | + Please include any relevant output here, especially any error messages. |
| 72 | + placeholder: A bug happened! |
| 73 | + validations: |
| 74 | + required: true |
| 75 | + - type: textarea |
| 76 | + id: context |
| 77 | + attributes: |
| 78 | + label: Additional context |
| 79 | + description: Anything else that might be relevant |
| 80 | + validations: |
| 81 | + required: false |
| 82 | + - type: textarea |
| 83 | + id: envinfo |
| 84 | + attributes: |
| 85 | + label: Environment |
| 86 | + description: | |
| 87 | + Please provide information about the environment you are running in. |
| 88 | + value: | |
| 89 | + - Operating System: [Ubuntu 22.04] |
| 90 | + - CPU: [arm64] |
| 91 | + - Browser: [All, Chromium, Firefox, WebKit] |
| 92 | + - Python Version: [3.12] |
| 93 | + - Other info: |
| 94 | + render: Text |
| 95 | + validations: |
| 96 | + required: true |
0 commit comments