Load all documents synchronously.
(self)
| 436 | await browser.close() |
| 437 | |
| 438 | def load(self) -> List[Document]: |
| 439 | """Load all documents synchronously.""" |
| 440 | return list(self.lazy_load()) |
| 441 | |
| 442 | async def aload(self) -> List[Document]: |
| 443 | """Load all documents asynchronously.""" |
no test coverage detected