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

Method inner_html

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

Source from the content-addressed store, hash-verified

82 return await self._channel.send("innerText", None)
83
84 async def inner_html(self) -> str:
85 return await self._channel.send("innerHTML", None)
86
87 async def is_checked(self) -> bool:
88 return await self._channel.send("isChecked", None)

Callers

nothing calls this directly

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected