(self, force: bool = None, timeout: float = None)
| 632 | ) |
| 633 | |
| 634 | async def select_text(self, force: bool = None, timeout: float = None) -> None: |
| 635 | params = locals_to_params(locals()) |
| 636 | return await self._with_element( |
| 637 | lambda h, timeout: h.select_text(**{**params, "timeout": timeout}), |
| 638 | timeout, |
| 639 | ) |
| 640 | |
| 641 | async def set_input_files( |
| 642 | self, |