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.

47 calls to WebTestBase::assertLinkByHref()

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 2020
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);
}