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

Method click

playwright/_impl/_element_handle.py:130–145  ·  view source on GitHub ↗
(
        self,
        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,
        steps: int = None,
    )

Source from the content-addressed store, hash-verified

128 )
129
130 async def click(
131 self,
132 modifiers: Sequence[KeyboardModifier] = None,
133 position: Position = None,
134 delay: float = None,
135 button: MouseButton = None,
136 clickCount: int = None,
137 timeout: float = None,
138 force: bool = None,
139 noWaitAfter: bool = None,
140 trial: bool = None,
141 steps: int = None,
142 ) -> None:
143 await self._channel.send(
144 "click", self._frame._timeout, locals_to_params(locals())
145 )
146
147 async def dblclick(
148 self,

Callers

nothing calls this directly

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected