public function BrowserTestBaseTest::testCheckForMetaRefresh in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php \Drupal\FunctionalTests\BrowserTestBaseTest::testCheckForMetaRefresh()
Tests the ::checkForMetaRefresh() method.
File
- core/
tests/ Drupal/ FunctionalTests/ BrowserTestBaseTest.php, line 685
Class
- BrowserTestBaseTest
- Tests BrowserTestBase functionality.
Namespace
Drupal\FunctionalTestsCode
public function testCheckForMetaRefresh() {
// Disable following redirects in the client.
$this
->getSession()
->getDriver()
->getClient()
->followRedirects(FALSE);
// Set the maximumMetaRefreshCount to zero to make sure the redirect doesn't
// happen when doing a drupalGet.
$this->maximumMetaRefreshCount = 0;
$this
->drupalGet('test-meta-refresh');
$this
->assertNotEmpty($this
->cssSelect('meta[http-equiv="refresh"]'));
// Allow one redirect to happen.
$this->maximumMetaRefreshCount = 1;
$this
->checkForMetaRefresh();
// Check that we are now on the test page.
$this
->assertSession()
->pageTextContains('Test page text.');
}