(self, force: bool = None, timeout: float = None)
| 204 | ) |
| 205 | |
| 206 | async def select_text(self, force: bool = None, timeout: float = None) -> None: |
| 207 | await self._channel.send( |
| 208 | "selectText", self._frame._timeout, locals_to_params(locals()) |
| 209 | ) |
| 210 | |
| 211 | async def input_value(self, timeout: float = None) -> str: |
| 212 | return await self._channel.send( |
nothing calls this directly
no test coverage detected