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

This commit is contained in:
LeeDr 2015-11-30 12:23:47 -06:00
parent 9a49fbc5c5
commit 40b944d235

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