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

Method _inner_continue

playwright/_impl/_network.py:520–540  ·  view source on GitHub ↗
(self, is_fallback: bool = False)

Source from the content-addressed store, hash-verified

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
522 await self._race_with_page_close(
523 self._channel.send(
524 "continue",
525 None,
526 {
527 "url": options.url,
528 "method": options.method,
529 "headers": (
530 serialize_headers(options.headers) if options.headers else None
531 ),
532 "postData": (
533 base64.b64encode(options.post_data_buffer).decode()
534 if options.post_data_buffer is not None
535 else None
536 ),
537 "isFallback": is_fallback,
538 },
539 )
540 )
541
542 async def _redirected_navigation_request(self, url: str) -> None:
543 await self._handle_route(

Callers 2

_innerMethod · 0.95
_on_routeMethod · 0.80

Calls 3

_race_with_page_closeMethod · 0.95
serialize_headersFunction · 0.85
sendMethod · 0.45

Tested by

no test coverage detected