MCPcopy Create free account
hub / github.com/microsoft/playwright-python / start_chunk

Method start_chunk

playwright/_impl/_tracing.py:70–73  ·  view source on GitHub ↗
(self, title: str = None, name: str = None)

Source from the content-addressed store, hash-verified

68 await self._start_collecting_stacks(trace_name)
69
70 async def start_chunk(self, title: str = None, name: str = None) -> None:
71 params = locals_to_params(locals())
72 trace_name = await self._channel.send("tracingStartChunk", None, params)
73 await self._start_collecting_stacks(trace_name)
74
75 async def _start_collecting_stacks(self, trace_name: str) -> None:
76 if not self._is_tracing:

Calls 3

locals_to_paramsFunction · 0.90
sendMethod · 0.45