/**
  * Moves the text cursor to the specified position in the given
  * input element or textarea.
  *
  * @param  string  $locator
  * @param  integer $position
  * @return string
  * @access public
  */
 public function setCursorPosition($locator, $position)
 {
     return $this->selenium->setCursorPosition($locator, $position);
 }