(
self,
value: str,
timeout: float = None,
noWaitAfter: bool = None,
force: bool = None,
)
| 193 | ) |
| 194 | |
| 195 | async def fill( |
| 196 | self, |
| 197 | value: str, |
| 198 | timeout: float = None, |
| 199 | noWaitAfter: bool = None, |
| 200 | force: bool = None, |
| 201 | ) -> None: |
| 202 | await self._channel.send( |
| 203 | "fill", self._frame._timeout, locals_to_params(locals()) |
| 204 | ) |
| 205 | |
| 206 | async def select_text(self, force: bool = None, timeout: float = None) -> None: |
| 207 | await self._channel.send( |
nothing calls this directly
no test coverage detected