(
self,
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,
trial: bool = None,
steps: int = None,
)
| 128 | ) |
| 129 | |
| 130 | async def click( |
| 131 | self, |
| 132 | modifiers: Sequence[KeyboardModifier] = None, |
| 133 | position: Position = None, |
| 134 | delay: float = None, |
| 135 | button: MouseButton = None, |
| 136 | clickCount: int = None, |
| 137 | timeout: float = None, |
| 138 | force: bool = None, |
| 139 | noWaitAfter: bool = None, |
| 140 | trial: bool = None, |
| 141 | steps: int = None, |
| 142 | ) -> None: |
| 143 | await self._channel.send( |
| 144 | "click", self._frame._timeout, locals_to_params(locals()) |
| 145 | ) |
| 146 | |
| 147 | async def dblclick( |
| 148 | self, |
nothing calls this directly
no test coverage detected