/**
  * Returns all option indexes (option number, starting at 0) for selected
  * options in the specified select or multi-select element.
  *
  * @param  string  $selectLocator
  * @return array
  * @access public
  */
 public function getSelectedIndexes($selectLocator)
 {
     return $this->selenium->getSelectedIndexes($selectLocator);
 }