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

Method inner_text

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

Source from the content-addressed store, hash-verified

79 return await self._channel.send("textContent", None)
80
81 async def inner_text(self) -> str:
82 return await self._channel.send("innerText", None)
83
84 async def inner_html(self) -> str:
85 return await self._channel.send("innerHTML", None)

Callers

nothing calls this directly

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected