/**
  * Determines whether a toggle-button (checkbox/radio) is checked.
  *
  * @param  string  $locator
  * @return boolean
  * @access public
  */
 public function isChecked($locator)
 {
     return $this->selenium->isChecked($locator);
 }