(
self,
modifiers: Sequence[KeyboardModifier] = None,
position: Position = None,
timeout: float = None,
noWaitAfter: bool = None,
force: bool = None,
trial: bool = None,
)
| 115 | ) |
| 116 | |
| 117 | async def hover( |
| 118 | self, |
| 119 | modifiers: Sequence[KeyboardModifier] = None, |
| 120 | position: Position = None, |
| 121 | timeout: float = None, |
| 122 | noWaitAfter: bool = None, |
| 123 | force: bool = None, |
| 124 | trial: bool = None, |
| 125 | ) -> None: |
| 126 | await self._channel.send( |
| 127 | "hover", self._frame._timeout, locals_to_params(locals()) |
| 128 | ) |
| 129 | |
| 130 | async def click( |
| 131 | self, |
nothing calls this directly
no test coverage detected