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