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

Method dblclick

playwright/_impl/_element_handle.py:147–161  ·  view source on GitHub ↗
(
        self,
        modifiers: Sequence[KeyboardModifier] = None,
        position: Position = None,
        delay: float = None,
        button: MouseButton = None,
        timeout: float = None,
        force: bool = None,
        noWaitAfter: bool = None,
        trial: bool = None,
        steps: int = None,
    )

Source from the content-addressed store, hash-verified

145 )
146
147 async def dblclick(
148 self,
149 modifiers: Sequence[KeyboardModifier] = None,
150 position: Position = None,
151 delay: float = None,
152 button: MouseButton = None,
153 timeout: float = None,
154 force: bool = None,
155 noWaitAfter: bool = None,
156 trial: bool = None,
157 steps: int = None,
158 ) -> None:
159 await self._channel.send(
160 "dblclick", self._frame._timeout, locals_to_params(locals())
161 )
162
163 async def select_option(
164 self,

Callers

nothing calls this directly

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected