Overrides CoreDriver::stop
public function stop() { if (!$this->wdSession) { throw new DriverException('Could not connect to a Selenium 2 / WebDriver server'); } $this->started = false; try { $this->wdSession ->close(); } catch (\Exception $e) { throw new DriverException('Could not close connection', 0, $e); } }