コード例 #1
0
 /**
  * @return $this
  * @throws WebDriverException
  */
 public function clear() {
   try {
     $this->element->clear();
     return $this;
   } catch (WebDriverException $exception) {
     $this->dispatchOnException($exception);
   }
 }