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