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

Method _start_collecting_stacks

playwright/_impl/_tracing.py:75–81  ·  view source on GitHub ↗
(self, trace_name: str)

Source from the content-addressed store, hash-verified

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:
77 self._is_tracing = True
78 self._connection.set_is_tracing(True)
79 self._stacks_id = await self._connection.local_utils.tracing_started(
80 self._traces_dir, trace_name, self._is_live
81 )
82
83 async def stop_chunk(self, path: Union[pathlib.Path, str] = None) -> None:
84 await self._do_stop_chunk(path)

Callers 2

startMethod · 0.95
start_chunkMethod · 0.95

Calls 2

set_is_tracingMethod · 0.80
tracing_startedMethod · 0.80

Tested by

no test coverage detected