Close resources without using a context manager.
(self)
| 159 | return self |
| 160 | |
| 161 | async def close(self) -> None: |
| 162 | """Close resources without using a context manager.""" |
| 163 | await self.__aexit__(None, None, None) |
| 164 | |
| 165 | @property |
| 166 | def playwright(self) -> Playwright: |
no test coverage detected