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

Method dblclick

playwright/_impl/_page.py:888–901  ·  view source on GitHub ↗
(
        self,
        selector: str,
        modifiers: Sequence[KeyboardModifier] = None,
        position: Position = None,
        delay: float = None,
        button: MouseButton = None,
        timeout: float = None,
        force: bool = None,
        noWaitAfter: bool = None,
        strict: bool = None,
        trial: bool = None,
    )

Source from the content-addressed store, hash-verified

886 return await self._main_frame._click(**locals_to_params(locals()))
887
888 async def dblclick(
889 self,
890 selector: str,
891 modifiers: Sequence[KeyboardModifier] = None,
892 position: Position = None,
893 delay: float = None,
894 button: MouseButton = None,
895 timeout: float = None,
896 force: bool = None,
897 noWaitAfter: bool = None,
898 strict: bool = None,
899 trial: bool = None,
900 ) -> None:
901 return await self._main_frame.dblclick(**locals_to_params(locals()))
902
903 async def tap(
904 self,

Calls 1

locals_to_paramsFunction · 0.90