(self)
| 233 | return har_id |
| 234 | |
| 235 | async def _export_all_hars(self) -> None: |
| 236 | for har_id in list(self._har_recorders.keys()): |
| 237 | await self._export_har(har_id) |
| 238 | self._har_id = None |
| 239 | |
| 240 | async def stop_har(self) -> None: |
| 241 | har_id = self._har_id |
no test coverage detected