public function DurationFieldBrowserTestBase::assertElementExists in Duration Field 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/DurationFieldBrowserTestBase.php \Drupal\Tests\duration_field\Functional\DurationFieldBrowserTestBase::assertElementExists()
- 3.0.x tests/src/Functional/DurationFieldBrowserTestBase.php \Drupal\Tests\duration_field\Functional\DurationFieldBrowserTestBase::assertElementExists()
Asserts an element exists on the page.
1 call to DurationFieldBrowserTestBase::assertElementExists()
- DurationFieldAccessTest::createDefaultSetup in tests/
src/ Functional/ DurationFieldFunctionalTest.php - Sets up a date.
File
- tests/
src/ Functional/ DurationFieldBrowserTestBase.php, line 22
Class
- DurationFieldBrowserTestBase
- Base class that provides some helper functions for functional tests.
Namespace
Drupal\Tests\duration_field\FunctionalCode
public function assertElementExists($selector) {
$this
->assertSession()
->elementExists('css', $selector);
}