(
self,
position: Position = None,
timeout: float = None,
force: bool = None,
noWaitAfter: bool = None,
trial: bool = None,
)
| 284 | ) |
| 285 | |
| 286 | async def check( |
| 287 | self, |
| 288 | position: Position = None, |
| 289 | timeout: float = None, |
| 290 | force: bool = None, |
| 291 | noWaitAfter: bool = None, |
| 292 | trial: bool = None, |
| 293 | ) -> None: |
| 294 | await self._channel.send( |
| 295 | "check", self._frame._timeout, locals_to_params(locals()) |
| 296 | ) |
| 297 | |
| 298 | async def uncheck( |
| 299 | self, |
no test coverage detected