(self)
| 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) |