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

Method hover

playwright/_impl/_element_handle.py:117–128  ·  view source on GitHub ↗
(
        self,
        modifiers: Sequence[KeyboardModifier] = None,
        position: Position = None,
        timeout: float = None,
        noWaitAfter: bool = None,
        force: bool = None,
        trial: bool = None,
    )

Source from the content-addressed store, hash-verified

115 )
116
117 async def hover(
118 self,
119 modifiers: Sequence[KeyboardModifier] = None,
120 position: Position = None,
121 timeout: float = None,
122 noWaitAfter: bool = None,
123 force: bool = None,
124 trial: bool = None,
125 ) -> None:
126 await self._channel.send(
127 "hover", self._frame._timeout, locals_to_params(locals())
128 )
129
130 async def click(
131 self,

Callers

nothing calls this directly

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected