diff --git a/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php b/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php
index 5177d8ce45c8ee10771fb022d25e21645188c6e6..5823ebe4245b4e3a6562d9c72c81d4e7fe0077e4 100644
--- a/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php
+++ b/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php
@@ -258,6 +258,25 @@ abstract class MinkTestCase extends DbTestCase
         return $result;
     }
 
+    /**
+     * Check whether an element containing the specified text exists.
+     *
+     * @param Element $page     Page element
+     * @param string  $selector CSS selector
+     * @param string  $text     Expected text
+     *
+     * @return bool
+     */
+    protected function hasElementsMatchingText(Element $page, $selector, $text)
+    {
+        foreach ($page->findAll('css', $selector) as $current) {
+            if ($text === $current->getText()) {
+                return true;
+            }
+        }
+        return false;
+    }
+
     /**
      * Standard setup method.
      *