protected function WebTestBase::assertLinkByHref

Pass if a link containing a given href (part) is found.

Parameters

$href: The full or partial value of the 'href' attribute of the anchor tag.

$index: Link position counting from zero.

$message: (optional) A message to display with the assertion. Do not translate messages: use format_string() to embed variables in the message text, not t(). If left blank, a default message will be displayed.

$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Other'; most tests do not override this default.

Return value

TRUE if the assertion succeeded, FALSE otherwise.

33 calls to WebTestBase::assertLinkByHref()
AdminTest::testAdminPages in drupal/core/modules/system/lib/Drupal/system/Tests/System/AdminTest.php
Tests output on administrative listing pages.
BasicTest::testViewsWizardAndListing in drupal/core/modules/views/lib/Drupal/views/Tests/Wizard/BasicTest.php
BlockTest::testCustomBlock in drupal/core/modules/block/lib/Drupal/block/Tests/BlockTest.php
Test creating custom block, moving it to a specific region and then deleting it.
CommentLinksTest::assertCommentLinks in drupal/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php
Asserts that comment links appear according to the passed environment.
CommentTranslationUITest::testTranslateLinkCommentAdminPage in drupal/core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php
Tests translate link on comment content admin page.

... See full list

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 1812
Definition of Drupal\simpletest\WebTestBase.

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

Code

protected function assertLinkByHref($href, $index = 0, $message = '', $group = 'Other') {
  $links = $this
    ->xpath('//a[contains(@href, :href)]', array(
    ':href' => $href,
  ));
  $message = $message ? $message : t('Link containing href %href found.', array(
    '%href' => $href,
  ));
  return $this
    ->assert(isset($links[$index]), $message, $group);
}