(headless, proxy, **kwargs)
| 280 | class firefox: |
| 281 | @staticmethod |
| 282 | async def launch(headless, proxy, **kwargs): |
| 283 | return DummyBrowser() |
| 284 | |
| 285 | # Patch the async_playwright to return our dummy |
| 286 | monkeypatch.setattr("playwright.async_api.async_playwright", lambda: DummyPW()) |
no test coverage detected