/**
  * Determines whether the specified text pattern appears somewhere
  * on the rendered page shown to the user.
  *
  * @param  string  $pattern
  * @return boolean
  * @access public
  */
 public function isTextPresent($pattern)
 {
     return $this->selenium->isTextPresent($pattern);
 }