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

Method describe

playwright/_impl/_locator.py:346–350  ·  view source on GitHub ↗
(self, description: str)

Source from the content-addressed store, hash-verified

344 return FrameLocator(self._frame, self._selector)
345
346 def describe(self, description: str) -> "Locator":
347 return Locator(
348 self._frame,
349 f"{self._selector} >> internal:describe={json.dumps(description)}",
350 )
351
352 @property
353 def description(self) -> Optional[str]:

Calls 1

LocatorClass · 0.70