Method
click
(
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,
trial: bool = None,
strict: bool = None,
)
Source from the content-addressed store, hash-verified
| 870 | return self._is_closed |
| 871 | |
| 872 | async def click( |
| 873 | self, |
| 874 | selector: str, |
| 875 | modifiers: Sequence[KeyboardModifier] = None, |
| 876 | position: Position = None, |
| 877 | delay: float = None, |
| 878 | button: MouseButton = None, |
| 879 | clickCount: int = None, |
| 880 | timeout: float = None, |
| 881 | force: bool = None, |
| 882 | noWaitAfter: bool = None, |
| 883 | trial: bool = None, |
| 884 | strict: bool = None, |
| 885 | ) -> None: |
| 886 | return await self._main_frame._click(**locals_to_params(locals())) |
| 887 | |
| 888 | async def dblclick( |
| 889 | self, |