Wait for the given number of seconds.
(self, t: float)
| 256 | return f'-- console logs ---\n{console}\n---------------------' |
| 257 | |
| 258 | def wait(self, t: float) -> None: |
| 259 | """Wait for the given number of seconds.""" |
| 260 | time.sleep(t) |
| 261 | |
| 262 | def _wait_for_socket_idle(self) -> None: |
| 263 | """Wait until no new Socket.IO messages have been received for 100ms.""" |
no outgoing calls