You are here

class WebDriverWebAssert in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalJavascriptTests/WebDriverWebAssert.php \Drupal\FunctionalJavascriptTests\WebDriverWebAssert

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

Hierarchy

Expanded class hierarchy of WebDriverWebAssert

File

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

Namespace

Drupal\FunctionalJavascriptTests
View source
class WebDriverWebAssert extends JSWebAssert {

  /**
   * The use of statusCodeEquals() is not available.
   *
   * @param int $code
   *   The status code.
   */
  public function statusCodeEquals($code) {
    @trigger_error('Support for statusCodeEquals is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::statusCodeEquals($code);
  }

  /**
   * The use of statusCodeNotEquals() is not available.
   *
   * @param int $code
   *   The status code.
   */
  public function statusCodeNotEquals($code) {
    @trigger_error('Support for statusCodeNotEquals is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::statusCodeNotEquals($code);
  }

  /**
   * The use of responseHeaderEquals() is not available.
   *
   * @param string $name
   *   The name of the header.
   * @param string $value
   *   The value to check the header against.
   */
  public function responseHeaderEquals($name, $value) {
    @trigger_error('Support for responseHeaderEquals is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::responseHeaderEquals($name, $value);
  }

  /**
   * The use of responseHeaderNotEquals() is not available.
   *
   * @param string $name
   *   The name of the header.
   * @param string $value
   *   The value to check the header against.
   */
  public function responseHeaderNotEquals($name, $value) {
    @trigger_error('Support for responseHeaderNotEquals is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::responseHeaderNotEquals($name, $value);
  }

  /**
   * The use of responseHeaderContains() is not available.
   *
   * @param string $name
   *   The name of the header.
   * @param string $value
   *   The value to check the header against.
   */
  public function responseHeaderContains($name, $value) {
    @trigger_error('Support for responseHeaderContains is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::responseHeaderContains($name, $value);
  }

  /**
   * The use of responseHeaderNotContains() is not available.
   *
   * @param string $name
   *   The name of the header.
   * @param string $value
   *   The value to check the header against.
   */
  public function responseHeaderNotContains($name, $value) {
    @trigger_error('Support for responseHeaderNotContains is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::responseHeaderNotContains($name, $value);
  }

  /**
   * The use of responseHeaderMatches() is not available.
   *
   * @param string $name
   *   The name of the header.
   * @param string $regex
   *   The value to check the header against.
   */
  public function responseHeaderMatches($name, $regex) {
    @trigger_error('Support for responseHeaderMatches is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::responseHeaderMatches($name, $regex);
  }

  /**
   * The use of responseHeaderNotMatches() is not available.
   *
   * @param string $name
   *   The name of the header.
   * @param string $regex
   *   The value to check the header against.
   */
  public function responseHeaderNotMatches($name, $regex) {
    @trigger_error('Support for responseHeaderNotMatches is to be dropped from JavaScript tests. See https://www.drupal.org/node/2857562.');
    parent::responseHeaderNotMatches($name, $regex);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
JSWebAssert::assertEscaped public function Passes if the raw text IS found escaped on the loaded page. Overrides WebAssert::assertEscaped
JSWebAssert::assertNoElementAfterWait public function Asserts that no matching element exists on the page after a wait.
JSWebAssert::assertNoEscaped public function Passes if the raw text IS NOT found escaped on the loaded page. Overrides WebAssert::assertNoEscaped
JSWebAssert::assertNotVisibleInViewport public function Tests that a node, or its specific corner, is not visible in the viewport.
JSWebAssert::assertVisibleInViewport public function Tests that a node, or its specific corner, is visible in the viewport.
JSWebAssert::assertWaitOnAjaxRequest public function Waits for AJAX request to be completed.
JSWebAssert::checkNodeVisibilityInViewport private function Check the visibility of a node, or its specific corner.
JSWebAssert::escapeHtml protected function Escapes HTML for testing.
JSWebAssert::waitForButton public function Waits for a button (input[type=submit|image|button|reset], button) with specified locator and returns it.
JSWebAssert::waitForElement public function Waits for the specified selector and returns it when available.
JSWebAssert::waitForElementRemoved public function Looks for the specified selector and returns TRUE when it is unavailable.
JSWebAssert::waitForElementVisible public function Waits for the specified selector and returns it when available and visible.
JSWebAssert::waitForField public function Waits for a field with specified locator and returns it when available.
JSWebAssert::waitForHelper private function Wraps waits in a function to catch curl exceptions to continue waiting.
JSWebAssert::waitForId public function Waits for an element by its id and returns it when available.
JSWebAssert::waitForLink public function Waits for a link with specified locator and returns it when available.
JSWebAssert::waitForText public function Waits for the specified text and returns its element when available.
JSWebAssert::waitOnAutocomplete public function Waits for the jQuery autocomplete delay duration.
WebAssert::$baseUrl protected property The absolute URL of the site under test.
WebAssert::addressEquals public function
WebAssert::addressMatches public function
WebAssert::addressNotEquals public function
WebAssert::assert public function Asserts a condition.
WebAssert::buildXPathQuery public function Builds an XPath query.
WebAssert::buttonExists public function Checks that specific button exists on the current page.
WebAssert::buttonNotExists public function Checks that the specific button does NOT exist on the current page.
WebAssert::checkboxChecked public function
WebAssert::checkboxNotChecked public function
WebAssert::cleanUrl protected function
WebAssert::cookieEquals public function
WebAssert::cookieExists public function
WebAssert::elementAttributeContains public function
WebAssert::elementAttributeExists public function
WebAssert::elementAttributeNotContains public function
WebAssert::elementContains public function
WebAssert::elementExists public function
WebAssert::elementNotContains public function
WebAssert::elementNotExists public function
WebAssert::elementsCount public function
WebAssert::elementTextContains public function
WebAssert::elementTextEquals public function Asserts a specific element's text equals an expected text.
WebAssert::elementTextNotContains public function
WebAssert::fieldDisabled public function Checks that a given form field element is disabled.
WebAssert::fieldEnabled public function Checks that a given form field element is enabled.
WebAssert::fieldExists public function
WebAssert::fieldNotExists public function
WebAssert::fieldValueEquals public function
WebAssert::fieldValueNotEquals public function
WebAssert::hiddenFieldExists public function Checks that specific hidden field exists.
WebAssert::hiddenFieldNotExists public function Checks that specific hidden field does not exist.
WebAssert::hiddenFieldValueEquals public function Checks that specific hidden field have provided value.
WebAssert::hiddenFieldValueNotEquals public function Checks that specific hidden field doesn't have the provided value.
WebAssert::linkByHrefExists public function Passes if a link containing a given href (part) is found.
WebAssert::linkByHrefNotExists public function Passes if a link containing a given href (part) is not found.
WebAssert::linkExists public function Passes if a link with the specified label is found.
WebAssert::linkExistsExact public function Passes if a link with the exactly specified label is found.
WebAssert::linkNotExists public function Passes if a link with the specified label is not found.
WebAssert::linkNotExistsExact public function Passes if a link with the exactly specified label is not found.
WebAssert::optionExists public function Checks that specific option in a select field exists on the current page.
WebAssert::optionNotExists public function Checks that an option in a select field does NOT exist on the current page.
WebAssert::pageContainsNoDuplicateId public function Asserts that each HTML ID is used for just a single element on the page.
WebAssert::pageTextContains public function
WebAssert::pageTextContainsOnce public function Checks that current page contains text only once.
WebAssert::pageTextMatches public function
WebAssert::pageTextMatchesCount public function Asserts that the current page text matches regex a number of times.
WebAssert::pageTextNotContains public function
WebAssert::pageTextNotMatches public function
WebAssert::responseContains public function Checks that page HTML (response content) contains text.
WebAssert::responseHeaderDoesNotExist public function Asserts that the current response header does not have a specific entry.
WebAssert::responseHeaderExists public function Asserts that the current response header has a specific entry.
WebAssert::responseMatches public function
WebAssert::responseNotContains public function Checks that page HTML (response content) does not contains text.
WebAssert::responseNotMatches public function
WebAssert::selectExists public function Checks that specific select field exists on the current page.
WebAssert::titleEquals public function Pass if the page title is the given string.
WebAssert::__construct public function Constructor.
WebDriverWebAssert::responseHeaderContains public function The use of responseHeaderContains() is not available. Overrides WebAssert::responseHeaderContains
WebDriverWebAssert::responseHeaderEquals public function The use of responseHeaderEquals() is not available. Overrides WebAssert::responseHeaderEquals
WebDriverWebAssert::responseHeaderMatches public function The use of responseHeaderMatches() is not available. Overrides WebAssert::responseHeaderMatches
WebDriverWebAssert::responseHeaderNotContains public function The use of responseHeaderNotContains() is not available. Overrides WebAssert::responseHeaderNotContains
WebDriverWebAssert::responseHeaderNotEquals public function The use of responseHeaderNotEquals() is not available. Overrides WebAssert::responseHeaderNotEquals
WebDriverWebAssert::responseHeaderNotMatches public function The use of responseHeaderNotMatches() is not available. Overrides WebAssert::responseHeaderNotMatches
WebDriverWebAssert::statusCodeEquals public function The use of statusCodeEquals() is not available. Overrides WebAssert::statusCodeEquals
WebDriverWebAssert::statusCodeNotEquals public function The use of statusCodeNotEquals() is not available. Overrides WebAssert::statusCodeNotEquals