You are here

public function WebDriverWebAssert::responseHeaderEquals in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalJavascriptTests/WebDriverWebAssert.php \Drupal\FunctionalJavascriptTests\WebDriverWebAssert::responseHeaderEquals()
  2. 10 core/tests/Drupal/FunctionalJavascriptTests/WebDriverWebAssert.php \Drupal\FunctionalJavascriptTests\WebDriverWebAssert::responseHeaderEquals()

The use of responseHeaderEquals() is not available.

Parameters

string $name: The name of the header.

string $value: The value to check the header against.

File

core/tests/Drupal/FunctionalJavascriptTests/WebDriverWebAssert.php, line 40

Class

WebDriverWebAssert
Defines a JSWebAssert with no support for status code and header assertions.

Namespace

Drupal\FunctionalJavascriptTests

Code

public function responseHeaderEquals($name, $value) {
  @trigger_error('Support for responseHeaderEquals is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.', E_USER_DEPRECATED);
  parent::responseHeaderEquals($name, $value);
}