You are here

protected function BrowserWithJavascriptTest::drupalGetWithAlert in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php \Drupal\FunctionalJavascriptTests\BrowserWithJavascriptTest::drupalGetWithAlert()

Retrieves a Drupal path or an absolute path.

Parameters

string|\Drupal\Core\Url $path: Drupal path or URL to load into Mink controlled browser.

array $options: (optional) Options to be forwarded to the url generator.

string[] $headers: An array containing additional HTTP request headers, the array keys are the header names and the array values the header values. This is useful to set for example the "Accept-Language" header for requesting the page in a different language. Note that not all headers are supported, for example the "Accept" header is always overridden by the browser. For testing REST APIs it is recommended to obtain a separate HTTP client using getHttpClient() and performing requests that way.

Return value

string The retrieved HTML string, also available as $this->getRawContent()

See also

\Drupal\Tests\BrowserTestBase::getHttpClient()

1 call to BrowserWithJavascriptTest::drupalGetWithAlert()
BrowserWithJavascriptTest::testEscapingAssertions in core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php
Tests assertEscaped() and assertUnescaped().

File

core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php, line 125

Class

BrowserWithJavascriptTest
Tests if we can execute JavaScript in the browser.

Namespace

Drupal\FunctionalJavascriptTests

Code

protected function drupalGetWithAlert($path, array $options = [], array $headers = []) {
  $options['absolute'] = TRUE;
  $url = $this
    ->buildUrl($path, $options);
  $session = $this
    ->getSession();
  $this
    ->prepareRequest();
  foreach ($headers as $header_name => $header_value) {
    $session
      ->setRequestHeader($header_name, $header_value);
  }
  $session
    ->visit($url);

  // There are 2 alerts to accept before we can get the content of the page.
  $session
    ->getDriver()
    ->getWebdriverSession()
    ->accept_alert();
  $session
    ->getDriver()
    ->getWebdriverSession()
    ->accept_alert();
  $out = $session
    ->getPage()
    ->getContent();

  // Ensure that any changes to variables in the other thread are picked up.
  $this
    ->refreshVariables();

  // Replace original page output with new output from redirected page(s).
  if ($new = $this
    ->checkForMetaRefresh()) {
    $out = $new;

    // We are finished with all meta refresh redirects, so reset the counter.
    $this->metaRefreshCount = 0;
  }

  // Log only for JavascriptTestBase tests because for Goutte we log with
  // ::getResponseLogHandler.
  if ($this->htmlOutputEnabled && !$this
    ->getSession()
    ->getDriver() instanceof GoutteDriver) {
    $html_output = 'GET request to: ' . $url . '<hr />Ending URL: ' . $this
      ->getSession()
      ->getCurrentUrl();
    $html_output .= '<hr />' . $out;
    $html_output .= $this
      ->getHtmlOutputHeaders();
    $this
      ->htmlOutput($html_output);
  }
  return $out;
}