/**
  * @return string
  * @throws WebDriverException
  */
 public function getTitle()
 {
     try {
         return $this->driver->getTitle();
     } catch (WebDriverException $exception) {
         $this->dispatchOnException($exception);
     }
 }