Wait for seconds. Important to use, especially in between page navigation. :param time:
(self, time: Union[float, int] = 1)
| 200 | return True |
| 201 | |
| 202 | async def wait(self, time: Union[float, int] = 1) -> Browser: |
| 203 | """Wait for <time> seconds. Important to use, |
| 204 | especially in between page navigation. |
| 205 | :param time: |
| 206 | """ |
| 207 | return await asyncio.sleep(time, result=self) |
| 208 | |
| 209 | sleep = wait |
| 210 | """Alias for wait""" |