Skip to content

Commit

Permalink
Not sure why Jenkins passed and Travis failed to find the timezone se…
Browse files Browse the repository at this point in the history
…lection. Adding 1 second sleep to see if it's timing.

Fixes #5600
  • Loading branch information
LeeDr committed Dec 8, 2015
1 parent c4b3f9c commit 1d54050
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/support/pages/SettingsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 1d54050

Please sign in to comment.