close joyride fix when you only run one suite

stable
Juanfran 2015-10-28 11:32:55 +01:00
parent 620c6accad
commit cfc3458e8f
1 changed files with 8 additions and 5 deletions

View File

@ -385,9 +385,12 @@ common.uploadImagePath = function() {
};
common.closeJoyride = function() {
browser.waitForAngular();
$('.introjs-skipbutton').click();
browser.sleep(200);
$('.introjs-skipbutton').isPresent().then((present) => {
console.log(present);
if (present) {
browser.waitForAngular();
$('.introjs-skipbutton').click();
browser.sleep(600);
}
});
};