Waits for n seconds to allow unfinished webpage processes to complete. Args: seconds: The number of seconds to wait. Returns: The current state after waiting.
(self, seconds: int)
| 183 | |
| 184 | @abc.abstractmethod |
| 185 | async def wait(self, seconds: int) -> ComputerState: |
| 186 | """Waits for n seconds to allow unfinished webpage processes to complete. |
| 187 | |
| 188 | Args: |
| 189 | seconds: The number of seconds to wait. |
| 190 | |
| 191 | Returns: |
| 192 | The current state after waiting. |
| 193 | """ |
| 194 | |
| 195 | @abc.abstractmethod |
| 196 | async def go_back(self) -> ComputerState: |
no outgoing calls
no test coverage detected