You are here

protected function DrupalWebTestCase::assertLink in SimpleTest 6.2

Same name and namespace in other branches
  1. 7.2 drupal_web_test_case.php \DrupalWebTestCase::assertLink()
  2. 7 drupal_web_test_case.php \DrupalWebTestCase::assertLink()

Pass if a link with the specified label is found, and optional with the specified index.

Parameters

$label: Text between the anchor tags.

$index: Link position counting from zero.

$message: Message to display.

$group: The group this message belongs to, defaults to 'Other'.

Return value

TRUE if the assertion succeeded, FALSE otherwise.

1 call to DrupalWebTestCase::assertLink()
DrupalWebTestCase::drupalLogin in ./drupal_web_test_case.php
Log in a user with the internal browser.

File

./drupal_web_test_case.php, line 2077

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertLink($label, $index = 0, $message = '', $group = 'Other') {
  $links = $this
    ->xpath('//a[normalize-space(text())=:label]', array(
    ':label' => $label,
  ));
  $message = $message ? $message : t('Link with label %label found.', array(
    '%label' => $label,
  ));
  return $this
    ->assert(isset($links[$index]), $message, $group);
}