(
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,
)
| 558 | return from_channel(await self._channel.send("addStyleTag", None, params)) |
| 559 | |
| 560 | async def click( |
| 561 | self, |
| 562 | selector: str, |
| 563 | modifiers: Sequence[KeyboardModifier] = None, |
| 564 | position: Position = None, |
| 565 | delay: float = None, |
| 566 | button: MouseButton = None, |
| 567 | clickCount: int = None, |
| 568 | timeout: float = None, |
| 569 | force: bool = None, |
| 570 | noWaitAfter: bool = None, |
| 571 | strict: bool = None, |
| 572 | trial: bool = None, |
| 573 | ) -> None: |
| 574 | await self._click(**locals_to_params(locals())) |
| 575 | |
| 576 | async def _click( |
| 577 | self, |
nothing calls this directly
no test coverage detected