(
self,
position: Position = None,
timeout: float = None,
force: bool = None,
noWaitAfter: bool = None,
trial: bool = None,
)
| 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) |
no test coverage detected