(
self,
selector: str,
modifiers: Sequence[KeyboardModifier] = None,
position: Position = None,
delay: float = None,
button: MouseButton = None,
clickCount: int = None,
timeout: float = None,
force: bool = None,
noWaitAfter: bool = None,
strict: bool = None,
trial: bool = None,
steps: int = None,
)
| 574 | await self._click(**locals_to_params(locals())) |
| 575 | |
| 576 | async def _click( |
| 577 | self, |
| 578 | selector: str, |
| 579 | modifiers: Sequence[KeyboardModifier] = None, |
| 580 | position: Position = None, |
| 581 | delay: float = None, |
| 582 | button: MouseButton = None, |
| 583 | clickCount: int = None, |
| 584 | timeout: float = None, |
| 585 | force: bool = None, |
| 586 | noWaitAfter: bool = None, |
| 587 | strict: bool = None, |
| 588 | trial: bool = None, |
| 589 | steps: int = None, |
| 590 | ) -> None: |
| 591 | await self._channel.send("click", self._timeout, locals_to_params(locals())) |
| 592 | |
| 593 | async def dblclick( |
| 594 | self, |
no test coverage detected