From f276bea21669ca196dba2f12c59fcac087847045 Mon Sep 17 00:00:00 2001 From: "Brian R. Bondy" Date: Wed, 28 Sep 2016 09:28:37 -0400 Subject: [PATCH] Fix navbar anchor test Auditors: @bridiver --- test/components/navigationBarTest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/components/navigationBarTest.js b/test/components/navigationBarTest.js index d8eaeacbbaf..b68d1cc1da2 100644 --- a/test/components/navigationBarTest.js +++ b/test/components/navigationBarTest.js @@ -232,7 +232,7 @@ describe('navigationBar', function () { .tabByUrl(this.page) .waitForExist('#bottom_link') .leftClick('#bottom_link') - .windowParentByUrl(this.page + '#top') + .windowParentByUrl(this.page + '#bottom') }) it('updates the location in the navbar', function * () { @@ -243,7 +243,7 @@ describe('navigationBar', function () { .moveToObject(titleBar) .waitForExist(urlInput) .waitUntil(function () { - return this.getValue(urlInput).then((val) => val === page + '#top') + return this.getValue(urlInput).then((val) => val === page + '#bottom') }) })