You are here

protected function AssertLegacyTrait::assertElementNotPresent in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/AssertLegacyTrait.php \Drupal\FunctionalTests\AssertLegacyTrait::assertElementNotPresent()

Asserts that the element with the given CSS selector is not present.

Parameters

string $css_selector: The CSS selector identifying the element to check.

Deprecated in drupal:8.2.0 and is removed from drupal:10.0.0. Use $this->assertSession()->elementNotExists() instead.

File

core/tests/Drupal/FunctionalTests/AssertLegacyTrait.php, line 52

Class

AssertLegacyTrait
Provides convenience methods for assertions in browser tests.

Namespace

Drupal\FunctionalTests

Code

protected function assertElementNotPresent($css_selector) {
  $this
    ->assertSession()
    ->elementNotExists('css', $css_selector);
}