Pass if a link with the specified label is found, and optional with the specified index.
$label: Text between the anchor tags.
$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 gorup 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.
TRUE if the assertion succeeded, FALSE otherwise.
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);
}