function BrowserTestBaseTest::testInvalidLinkNotExistsExact

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php \Drupal\FunctionalTests\BrowserTestBaseTest::testInvalidLinkNotExistsExact()

Tests linkNotExistsExact() functionality fail.

See also

\Drupal\Tests\WebAssert::linkNotExistsExact()

File

core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php, line 253

Class

BrowserTestBaseTest
Tests BrowserTestBase functionality.

Namespace

Drupal\FunctionalTests

Code

public function testInvalidLinkNotExistsExact() {
    $this->drupalGet('test-pipe-char');
    $this->expectException(ExpectationException::class);
    $this->expectExceptionMessage('Link with label foo|bar|baz not found');
    $this->assertSession()
        ->linkNotExistsExact('foo|bar|baz');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.