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

Method json

playwright/_impl/_fetch.py:558–560  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

556 return content.decode()
557
558 async def json(self) -> Any:
559 content = await self.text()
560 return json.loads(content)
561
562 async def security_details(self) -> Optional[SecurityDetails]:
563 return self._initializer.get("securityDetails") or None

Callers

nothing calls this directly

Calls 1

textMethod · 0.95

Tested by

no test coverage detected