From 1d54050f62b18983a2a9b809e612d2ac1de574f3 Mon Sep 17 00:00:00 2001 From: LeeDr Date: Mon, 30 Nov 2015 12:23:47 -0600 Subject: [PATCH] Not sure why Jenkins passed and Travis failed to find the timezone selection. Adding 1 second sleep to see if it's timing. Fixes #5600 --- test/support/pages/SettingsPage.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/support/pages/SettingsPage.js b/test/support/pages/SettingsPage.js index d887a8718a19e..2beb005da3f00 100644 --- a/test/support/pages/SettingsPage.js +++ b/test/support/pages/SettingsPage.js @@ -24,6 +24,9 @@ define(function (require) { var self = this; return common.findTestSubject('advancedSetting&' + propertyName + ' editButton') .click() + .then(function () { + return common.sleep(1000); + }) .then(function setAdvancedSettingsClickPropertyValue(selectList) { return self.remote.findByCssSelector('option[label="' + propertyValue + '"]') .click();