--- name: Bug Report about: Something doesn't work like it should? Tell us! title: "[BUG]" labels: '' assignees: '' --- ### System info - Playwright Version: [v1.XX] - Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.] - Browser: [All, Chromium, Firefox, WebKit] - Other info: ### Source code - [ ] I provided exact source code that allows reproducing the issue locally. **Link to the GitHub repository with the repro** [https://github.com/your_profile/playwright_issue_title] or **Test file (self-contained)** ```java import com.microsoft.playwright.*; public class ExampleReproducible { public static void main(String[] args) { try (Playwright playwright = Playwright.create()) { Browser browser = playwright.chromium().launch(); BrowserContext context = browser.newContext(); Page page = context.newPage(); // ... } } } ``` **Steps** - [Run the test] - [...] **Expected** [Describe expected behavior] **Actual** [Describe actual behavior]