Not sure why Jenkins passed and Travis failed to find the timezone selection. Adding 1 second sleep to see if it's timing.

Fixes #5526
This commit is contained in:
LeeDr 2015-11-30 12:23:47 -06:00 committed by Lee Drengenberg
parent f30c329b85
commit 8230905cd4

View file

@ -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();