From a7ba6272202a5072cd87c84917a2aa7c614b330d Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Wed, 14 Mar 2018 23:58:31 +0000 Subject: [PATCH] Issue #2913901 by jhedstrom: Non-helpful error when BrowserTestBase::clickLink doesn't find the link --- core/tests/Drupal/Tests/BrowserTestBase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/tests/Drupal/Tests/BrowserTestBase.php b/core/tests/Drupal/Tests/BrowserTestBase.php index 087419054ab1..25756bf36d75 100644 --- a/core/tests/Drupal/Tests/BrowserTestBase.php +++ b/core/tests/Drupal/Tests/BrowserTestBase.php @@ -1177,6 +1177,7 @@ protected function cssSelect($selector) { protected function clickLink($label, $index = 0) { $label = (string) $label; $links = $this->getSession()->getPage()->findAll('named', ['link', $label]); + $this->assertArrayHasKey($index, $links, 'The link ' . $label . ' was not found on the page.'); $links[$index]->click(); } -- GitLab