/**
  * Test...
  *
  * @param   string  $element  The XML element object representation of the form field.
  * @param   string  $group    The optional dot-separated form group path on which to find the field.
  * @param   mixed   $value    The optional value to use as the default for the field.
  *
  * @return  \Joomla\Form\Field
  *
  * @since   1.0
  */
 public function loadField($element, $group = null, $value = null)
 {
     return parent::loadField($element, $group, $value);
 }