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