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

Method click

playwright/_impl/_frame.py:560–574  ·  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,
    )

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 2

_clickMethod · 0.95
locals_to_paramsFunction · 0.90

Tested by

no test coverage detected