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