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