From 9bc90ac3453587b8beb4510540bbe673cd4663a9 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 21 Mar 2018 09:35:51 -0400 Subject: [PATCH] Fix broken test. --- .../src/VuFindTest/Mink/AccountActionsTest.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/AccountActionsTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/AccountActionsTest.php index ec4e43e9ab5..ecf059cb409 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/AccountActionsTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/AccountActionsTest.php @@ -87,13 +87,16 @@ class AccountActionsTest extends \VuFindTest\Unit\MinkTestCase $this->findCss($page, '.logoutOptions a.logout')->click(); $this->snooze(); + // Go to profile page: + $session->visit($this->getVuFindUrl('/MyResearch/Profile')); + // Log back in $this->findCss($page, '#loginOptions a')->click(); $this->fillInLoginForm($page, 'username1', 'test'); $this->findCss($page, '.modal-body .btn.btn-primary')->click(); $this->snooze(); - // We should now be on account screen; go to change password page + // Now click change password button: $this->findAndAssertLink($page, 'Change Password')->click(); $this->snooze(); -- GitLab