You are here

public function ForcePasswordChangeBrowserTestBase::assertElementNotExistsXpath in Force Password Change 2.0.x

Same name and namespace in other branches
  1. 8 tests/src/Functional/ForcePasswordChangeBrowserTestBase.php \Drupal\Tests\force_password_change\Functional\ForcePasswordChangeBrowserTestBase::assertElementNotExistsXpath()

File

tests/src/Functional/ForcePasswordChangeBrowserTestBase.php, line 43

Class

ForcePasswordChangeBrowserTestBase
Provides some helper functions for functional tests.

Namespace

Drupal\Tests\force_password_change\Functional

Code

public function assertElementNotExistsXpath($selector) {
  $this
    ->assertSession()
    ->elementNotExists('xpath', $selector);
}