(self)
| 235 | await self.page.keyboard.type(text) |
| 236 | |
| 237 | async def wait(self) -> None: |
| 238 | await asyncio.sleep(1) |
| 239 | |
| 240 | async def move(self, x: int, y: int, *, keys: list[str] | None = None) -> None: |
| 241 | async with self._hold_keys(keys): |
no outgoing calls
no test coverage detected