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

Method pick_locator

playwright/_impl/_page.py:1503–1505  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1501 await self._channel.send("clearPageErrors", None)
1502
1503 async def pick_locator(self) -> "Locator":
1504 selector = await self._channel.send("pickLocator", None, {})
1505 return self.locator(selector)
1506
1507 async def cancel_pick_locator(self) -> None:
1508 await self._channel.send("cancelPickLocator", None, {})

Callers

nothing calls this directly

Calls 2

locatorMethod · 0.95
sendMethod · 0.45

Tested by

no test coverage detected