(self, context: "BrowserContext")
| 105 | await route.fallback() |
| 106 | |
| 107 | async def add_context_route(self, context: "BrowserContext") -> None: |
| 108 | await context.route( |
| 109 | url=self._options_url_match or "**/*", |
| 110 | handler=lambda route, _: asyncio.create_task(self._handle(route)), |
| 111 | ) |
| 112 | |
| 113 | async def add_page_route(self, page: "Page") -> None: |
| 114 | await page.route( |
no test coverage detected