(route: Route)
| 275 | await context.route("**/*", _handler, times=1) |
| 276 | |
| 277 | async def _handler2(route: Route) -> None: |
| 278 | intercepted.append("second") |
| 279 | await context.unroute("**/*", _handler) |
| 280 | await route.fallback() |
| 281 | |
| 282 | await context.route("**/*", _handler2) |
| 283 | await page.goto(server.EMPTY_PAGE) |