|
| 1 | +name: Regression Report |
| 2 | +description: Functionality that used to work and does not any more |
| 3 | +title: "[REGRESSION]: " |
| 4 | +labels: ["bug", "unconfirmed"] |
| 5 | +assignees: |
| 6 | + - vinyzu |
| 7 | +type: bug |
| 8 | +body: |
| 9 | + - type: markdown |
| 10 | + attributes: |
| 11 | + value: | |
| 12 | + Thanks for taking the time to report a regression! |
| 13 | + Please keep this report focused on something that **used to work** and **stopped working** after an upgrade. |
| 14 | +
|
| 15 | + - type: checkboxes |
| 16 | + attributes: |
| 17 | + label: Checklist before reporting |
| 18 | + description: Please make sure you've completed the following steps before submitting a regression report. |
| 19 | + options: |
| 20 | + - label: I have searched for [similar issues](https://github.com/Kaliiiiiiiiii-Vinyzu/patchright/issues?q=sort%3Arelevance%20is%3Aissue) and didn't find a duplicate. |
| 21 | + required: true |
| 22 | + - label: I have updated to the latest version of Patchright to verify the regression still exists. |
| 23 | + required: true |
| 24 | + - label: I have verified that this regression does not occur when using [Playwright](https://github.com/microsoft/playwright/) directly. |
| 25 | + required: true |
| 26 | + |
| 27 | + - type: input |
| 28 | + id: good_patchright_version |
| 29 | + attributes: |
| 30 | + label: GOOD Patchright Version |
| 31 | + description: What Patchright version worked nicely? |
| 32 | + placeholder: e.g. 1.56.0 |
| 33 | + validations: |
| 34 | + required: true |
| 35 | + |
| 36 | + - type: input |
| 37 | + id: bad_patchright_version |
| 38 | + attributes: |
| 39 | + label: BAD Patchright Version |
| 40 | + description: What Patchright version introduced the regression? |
| 41 | + placeholder: e.g. 1.57.0 |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: input |
| 46 | + id: operating_system |
| 47 | + attributes: |
| 48 | + label: Operating System |
| 49 | + description: Which operating system is this occurring on? [All, Windows 11, Ubuntu 20, macOS 13.2, etc.] |
| 50 | + placeholder: All, macOS 14.2 (Apple Silicon) |
| 51 | + validations: |
| 52 | + required: false |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: test_file |
| 56 | + attributes: |
| 57 | + label: Reproduction (self-contained) |
| 58 | + description: | |
| 59 | + A minimal, self-contained code example that demonstrates the regression. |
| 60 | + Please provide the code necessary to reproduce the bug, including any relevant setup or configuration. |
| 61 | + Please use code blocks with the correct language for better readability. |
| 62 | + placeholder: | |
| 63 | + ```py |
| 64 | + from patchright.sync_api import sync_playwright |
| 65 | +
|
| 66 | + with sync_playwright() as p: |
| 67 | + browser = p.chromium.launch() |
| 68 | + page = browser.new_page() |
| 69 | + # ... |
| 70 | + browser.close() |
| 71 | + ``` |
| 72 | + validations: |
| 73 | + required: true |
| 74 | + |
| 75 | + - type: textarea |
| 76 | + id: expected_behavior |
| 77 | + attributes: |
| 78 | + label: Expected Behavior |
| 79 | + description: What did happen in the GOOD version? |
| 80 | + placeholder: In 1.56.0, navigation succeeded and returned status 200... |
| 81 | + validations: |
| 82 | + required: true |
| 83 | + |
| 84 | + - type: textarea |
| 85 | + id: actual_behavior |
| 86 | + attributes: |
| 87 | + label: Actual Behavior |
| 88 | + description: What happens in the BAD version? Include full error messages and stack traces if applicable. |
| 89 | + placeholder: In 1.57.0, navigation fails with... (stack trace) |
| 90 | + validations: |
| 91 | + required: true |
| 92 | + |
0 commit comments