MCPcopy Index your code
hub / github.com/microsoft/playwright-python / _click

Method _click

playwright/_impl/_frame.py:576–591  ·  view source on GitHub ↗
(
        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,
    )

Source from the content-addressed store, hash-verified

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,

Callers 3

clickMethod · 0.95
clickMethod · 0.45
clickMethod · 0.45

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected