Check for meta refresh tag and if found call drupalGet() recursively. This function looks for the http-equiv attribute to be set to "Refresh" and is case-sensitive.
Either the new page content or FALSE.
protected function checkForMetaRefresh() {
if (strpos($this
->drupalGetContent(), '<meta ') && $this
->parse()) {
$refresh = $this
->xpath('//meta[@http-equiv="Refresh"]');
if (!empty($refresh)) {
// Parse the content attribute of the meta tag for the format:
// "[delay]: URL=[page_to_redirect_to]".
if (preg_match('/\\d+;\\s*URL=(?P<url>.*)/i', $refresh[0]['content'], $match)) {
return $this
->drupalGet($this
->getAbsoluteUrl(decode_entities($match['url'])));
}
}
}
return FALSE;
}