Searched refs:titleRegexp (Results 1 – 2 of 2) sorted by relevance
70 * @param string $titleRegexp The regular expression to test against.73 public static function titleMatches($titleRegexp) argument76 function (WebDriver $driver) use ($titleRegexp) {77 return (bool) preg_match($titleRegexp, $driver->getTitle());
290 static $titleRegexp = null;291 if (null === $titleRegexp) {292 $titleRegexp = self::getData('titleCaseRegexp');294 $s = preg_replace_callback($titleRegexp, [__CLASS__, 'title_case'], $s);