function WebAssertTest::testLinkByHrefExistsExact

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testLinkByHrefExistsExact()

Tests linkExistsByHref() functionality.

@legacy-covers ::linkByHrefExistsExact

File

core/tests/Drupal/Tests/Core/Test/WebAssertTest.php, line 310

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\Tests\Core\Test

Code

public function testLinkByHrefExistsExact() : void {
  $this->visit('', '<a href="/user/login">Log in</a><a href="/user/register">Register</a>');
  $this->assertSession()
    ->linkByHrefExistsExact('/user/login');
  $this->addToAssertionCount(1);
}

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