You are here

public function ForcePasswordChangeBrowserTestBase::assertElementExists 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::assertElementExists()
3 calls to ForcePasswordChangeBrowserTestBase::assertElementExists()
ForcePasswordChangeAdminUiTest::testForcePasswordChangeAdminPage in tests/src/Functional/ForcePasswordChangeAdminUiTest.php
Test that the admin UI page is properly linked to, that all the required elements exist, and that the form is working properly.
ForcePasswordChangeBrowserTestBase::assertCheckboxExists in tests/src/Functional/ForcePasswordChangeBrowserTestBase.php
ForcePasswordChangeBrowserTestBase::assertRadioExists in tests/src/Functional/ForcePasswordChangeBrowserTestBase.php

File

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

Class

ForcePasswordChangeBrowserTestBase
Provides some helper functions for functional tests.

Namespace

Drupal\Tests\force_password_change\Functional

Code

public function assertElementExists($selector) {
  $this
    ->assertSession()
    ->elementExists('css', $selector);
}