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

Method text_content

playwright/_impl/_element_handle.py:78–79  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

76 return await self._channel.send("getAttribute", None, dict(name=name))
77
78 async def text_content(self) -> Optional[str]:
79 return await self._channel.send("textContent", None)
80
81 async def inner_text(self) -> str:
82 return await self._channel.send("innerText", None)

Callers

nothing calls this directly

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected