/**
  * @throws WebDriverException
  */
 public function quit()
 {
     try {
         $this->driver->quit();
     } catch (WebDriverException $exception) {
         $this->dispatchOnException($exception);
     }
 }
Beispiel #2
0
 public function quit()
 {
     $this->_webDriver->quit();
 }