(
self,
selector: str,
value: str,
timeout: float = None,
noWaitAfter: bool = None,
strict: bool = None,
force: bool = None,
)
| 621 | await self._channel.send("tap", self._timeout, locals_to_params(locals())) |
| 622 | |
| 623 | async def fill( |
| 624 | self, |
| 625 | selector: str, |
| 626 | value: str, |
| 627 | timeout: float = None, |
| 628 | noWaitAfter: bool = None, |
| 629 | strict: bool = None, |
| 630 | force: bool = None, |
| 631 | ) -> None: |
| 632 | await self._fill(**locals_to_params(locals())) |
| 633 | |
| 634 | async def _fill( |
| 635 | self, |
nothing calls this directly
no test coverage detected