You are here

public function BambooTwigTestBase::assertLinkLabelExist in Bamboo Twig 8.5

Same name and namespace in other branches
  1. 8 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertLinkLabelExist()
  2. 8.2 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertLinkLabelExist()
  3. 8.3 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertLinkLabelExist()
  4. 8.4 tests/src/Functional/BambooTwigTestBase.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigTestBase::assertLinkLabelExist()

Passes if a link with the specified label is found.

An optional link index may be passed.

Parameters

string $label: Text between the anchor tags.

int $index: (optional) Link position counting from zero.

Throws

\Behat\Mink\Exception\ExpectationException Thrown when element doesn't exist, or the link label is a different one.

See also

\Behat\Mink\WebAssert::linkExists

File

tests/src/Functional/BambooTwigTestBase.php, line 332

Class

BambooTwigTestBase
Has some additional helper methods to make test code more readable.

Namespace

Drupal\Tests\bamboo_twig\Functional

Code

public function assertLinkLabelExist($label, $index = 0) {
  $this
    ->assertSession()
    ->linkExists($label, $index = 0);
}