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

Method tap

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

Source from the content-addressed store, hash-verified

180 return await self._channel.send("selectOption", self._frame._timeout, params)
181
182 async def tap(
183 self,
184 modifiers: Sequence[KeyboardModifier] = None,
185 position: Position = None,
186 timeout: float = None,
187 force: bool = None,
188 noWaitAfter: bool = None,
189 trial: bool = None,
190 ) -> None:
191 await self._channel.send(
192 "tap", self._frame._timeout, locals_to_params(locals())
193 )
194
195 async def fill(
196 self,

Callers

nothing calls this directly

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected