MCPcopy Index your code
hub / github.com/microsoft/playwright-python / continue_

Method continue_

playwright/_impl/_network.py:505–518  ·  view source on GitHub ↗
(
        self,
        url: str = None,
        method: str = None,
        headers: Dict[str, str] = None,
        postData: Union[Any, str, bytes] = None,
    )

Source from the content-addressed store, hash-verified

503 self._report_handled(False)
504
505 async def continue_(
506 self,
507 url: str = None,
508 method: str = None,
509 headers: Dict[str, str] = None,
510 postData: Union[Any, str, bytes] = None,
511 ) -> None:
512 overrides = cast(FallbackOverrideParameters, locals_to_params(locals()))
513
514 async def _inner() -> None:
515 self.request._apply_fallback_overrides(overrides)
516 await self._inner_continue(False)
517
518 return await self._handle_route(_inner)
519
520 async def _inner_continue(self, is_fallback: bool = False) -> None:
521 options = self.request._fallback_overrides

Calls 2

_handle_routeMethod · 0.95
locals_to_paramsFunction · 0.90