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

Method uncheck

playwright/_impl/_element_handle.py:298–308  ·  view source on GitHub ↗
(
        self,
        position: Position = None,
        timeout: float = None,
        force: bool = None,
        noWaitAfter: bool = None,
        trial: bool = None,
    )

Source from the content-addressed store, hash-verified

296 )
297
298 async def uncheck(
299 self,
300 position: Position = None,
301 timeout: float = None,
302 force: bool = None,
303 noWaitAfter: bool = None,
304 trial: bool = None,
305 ) -> None:
306 await self._channel.send(
307 "uncheck", self._frame._timeout, locals_to_params(locals())
308 )
309
310 async def bounding_box(self) -> Optional[FloatRect]:
311 return await self._channel.send("boundingBox", None)

Callers 1

set_checkedMethod · 0.95

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected