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

Method read_info_buffer

playwright/_impl/_artifact.py:70–81  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

68 )
69
70 async def read_info_buffer(self) -> bytes:
71 stream = cast(
72 Stream,
73 from_channel(
74 await self._channel.send(
75 "stream",
76 None,
77 )
78 ),
79 )
80 buffer = await stream.read_all()
81 return buffer
82
83 async def cancel(self) -> None: # pyright: ignore[reportIncompatibleMethodOverride]
84 await self._channel.send(

Callers 1

stop_tracingMethod · 0.80

Calls 3

from_channelFunction · 0.90
read_allMethod · 0.80
sendMethod · 0.45

Tested by

no test coverage detected