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

Method group

playwright/_impl/_tracing.py:158–162  ·  view source on GitHub ↗
(
        self, name: str, location: TracingGroupLocation = None
    )

Source from the content-addressed store, hash-verified

156 self._connection.set_is_tracing(False)
157
158 async def group(
159 self, name: str, location: TracingGroupLocation = None
160 ) -> DisposableStub:
161 await self._channel.send("tracingGroup", None, locals_to_params(locals()))
162 return DisposableStub(lambda: self.group_end(), self)
163
164 async def group_end(self) -> None:
165 await self._channel.send(

Callers 10

_add_linkMethod · 0.45
replace_callbackMethod · 0.45
serialize_python_typeMethod · 0.45
short_nameFunction · 0.45
descriptionMethod · 0.45
patch_error_messageFunction · 0.45

Calls 4

group_endMethod · 0.95
locals_to_paramsFunction · 0.90
DisposableStubClass · 0.90
sendMethod · 0.45