We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e59813 commit 11e3830Copy full SHA for 11e3830
CHANGELOG.md
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
### Added
13
14
- Add `tab.remove_handlers` method for removing handlers @khamaileon
15
+- Clean up temporary profiles when `Browser.stop()` is called @barrycarey
16
17
### Changed
18
zendriver/core/browser.py
@@ -587,6 +587,7 @@ async def stop(self):
587
await self._process.wait()
588
self._process = None
589
self._process_pid = None
590
+ await self._cleanup_temporary_profile()
591
592
async def _cleanup_temporary_profile(self) -> None:
593
if not self.config or self.config.uses_custom_data_dir:
0 commit comments