From 5b1576f0fcca59746aad73c70a81cb16aa433e3f Mon Sep 17 00:00:00 2001 From: Khalah Jones-Golden Date: Tue, 9 Feb 2016 17:41:28 -0400 Subject: [PATCH] [Tests] Updated the tests with thte proper selector --- test/support/pages/common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/support/pages/common.js b/test/support/pages/common.js index c246031a4543..c68b1a4131b6 100644 --- a/test/support/pages/common.js +++ b/test/support/pages/common.js @@ -154,11 +154,11 @@ define(function (require) { var self = this; return self.remote.setFindTimeout(defaultTimeout) - .findByCssSelector('.app-wrapper > .application') + .findByCssSelector('.app-wrapper .application') .then(function () { return self.runScript(function () { var $ = window.$; - var $scope = $('.app-wrapper > .application').scope(); + var $scope = $('.app-wrapper .application').scope(); return $scope ? $scope.chrome.getApp() : {}; }); });