function WebAssertTest::testLinkByHrefExists

Same name in this branch
  1. 11.x core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testLinkByHrefExists()
Same name in other branches
  1. 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testLinkByHrefExists()
  2. 10 core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testLinkByHrefExists()

Tests linkExistsByHref() functionality.

@covers ::linkByHrefExists

File

core/tests/Drupal/FunctionalTests/WebAssertTest.php, line 199

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\FunctionalTests

Code

public function testLinkByHrefExists() : void {
    $this->drupalGet('test-page');
    // Partial matching.
    $this->assertSession()
        ->linkByHrefExists('/user');
    // Full matching.
    $this->assertSession()
        ->linkByHrefExists('/user/login');
}

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