mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
try around some failing dashboard test steps
This commit is contained in:
parent
65f74e08b9
commit
4234c9f6e3
1 changed files with 8 additions and 2 deletions
|
@ -81,10 +81,16 @@ bdd.describe('dashboard tab', function describeIndexTests() {
|
|||
return dashboardPage.saveDashboard(dashboardName)
|
||||
// click New Dashboard just to clear the one we just created
|
||||
.then(function () {
|
||||
return dashboardPage.clickNewDashboard();
|
||||
return common.try(function () {
|
||||
common.debug('saved Dashboard, now click New Dashboard');
|
||||
return dashboardPage.clickNewDashboard();
|
||||
});
|
||||
})
|
||||
.then(function () {
|
||||
return dashboardPage.loadSavedDashboard(dashboardName);
|
||||
return common.try(function () {
|
||||
common.debug('now re-load previously saved dashboard');
|
||||
return dashboardPage.loadSavedDashboard(dashboardName);
|
||||
});
|
||||
})
|
||||
.then(function () {
|
||||
common.saveScreenshot('Dashboard-load-saved');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue