diff --git a/src/Client.php b/src/Client.php index 6b25cef6..59de9b5b 100644 --- a/src/Client.php +++ b/src/Client.php @@ -105,7 +105,11 @@ public function __wakeup(): void public function __destruct() { - $this->quit(); + try { + $this->quit(); + } catch (\Facebook\WebDriver\Exception\WebDriverCurlException) { + // ignore + } } public function start(): void