From 340f637fbada9f11002fac9ecd785606a79d4a4f Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 21 Dec 2016 12:28:58 -0500
Subject: [PATCH] Fixed broken test to account for export to new tab.

---
 .../tests/integration-tests/src/VuFindTest/Mink/CartTest.php   | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php
index bd4f17be837..b764b190676 100644
--- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php
+++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php
@@ -579,6 +579,9 @@ class CartTest extends \VuFindTest\Unit\MinkTestCase
         $submit = $this->findCss($page, '.modal-body input[name=submit]');
         $submit->click();
         $this->snooze();
+        $windows = $this->getMinkSession()->getWindowNames();
+        $this->assertEquals(2, count($windows));
+        $this->getMinkSession()->switchToWindow($windows[1]);
         $this->assertEquals(
             'https://www.google.com/', $this->getMinkSession()->getCurrentUrl()
         );
-- 
GitLab