(
self,
key: str,
delay: float = None,
timeout: float = None,
noWaitAfter: bool = None,
)
| 249 | ) |
| 250 | |
| 251 | async def press( |
| 252 | self, |
| 253 | key: str, |
| 254 | delay: float = None, |
| 255 | timeout: float = None, |
| 256 | noWaitAfter: bool = None, |
| 257 | ) -> None: |
| 258 | await self._channel.send( |
| 259 | "press", self._frame._timeout, locals_to_params(locals()) |
| 260 | ) |
| 261 | |
| 262 | async def set_checked( |
| 263 | self, |
nothing calls this directly
no test coverage detected