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