Skip to content
Snippets Groups Projects
Commit f25177aa authored by Demian Katz's avatar Demian Katz
Browse files

Added safer wrapper method around getLink().

parent f892742c
No related merge requests found
......@@ -269,6 +269,21 @@ abstract class MinkTestCase extends DbTestCase
return $result;
}
/**
* Retrieve a link and assert that it exists before returning it.
*
* @param Element $page Page element
* @param string $text Link text to match
*
* @return mixed
*/
protected function findAndAssertLink(Element $page, $text)
{
$link = $page->findLink($text);
$this->assertTrue(is_object($link));
return $link;
}
/**
* Check whether an element containing the specified text exists.
*
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment