mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
css selector change in SettingsPage.getPopularity to try to fix Travis test run.
This commit is contained in:
parent
d10ed2fb66
commit
324fcd6ab9
2 changed files with 4 additions and 1 deletions
|
@ -496,12 +496,15 @@ define(function (require) {
|
|||
})
|
||||
// increase Popularity
|
||||
.then(function openControlsByName() {
|
||||
common.log('Starting openControlsByName "geo.coordinates"');
|
||||
return settingsPage.openControlsByName('geo.coordinates');
|
||||
})
|
||||
.then(function increasePopularity() {
|
||||
common.log('increasePopularity');
|
||||
return settingsPage.increasePopularity();
|
||||
})
|
||||
.then(function getPopularity() {
|
||||
common.log('getPopularity');
|
||||
return settingsPage.getPopularity()
|
||||
.then(function (popularity) {
|
||||
common.log('popularity = ' + popularity);
|
||||
|
|
|
@ -198,7 +198,7 @@ define(function (require) {
|
|||
|
||||
getPopularity: function getPopularity() {
|
||||
return this.remote.setFindTimeout(defaultTimeout)
|
||||
.findByCssSelector('input.form-control.ng-pristine.ng-valid.ng-untouched.ng-valid-number')
|
||||
.findByCssSelector('input[ng-model="editor.field.count"]')
|
||||
.then(function (input) {
|
||||
return input.getProperty('value');
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue