fix feedback e2e

stable
Juanfran 2015-08-12 15:08:41 +02:00
parent acb154c6d9
commit f5e16048fd
2 changed files with 4 additions and 3 deletions

View File

@ -15,7 +15,7 @@ describe('feedback', function() {
utils.common.takeScreenshot('edit-user-profile', 'mail-notifications');
});
it('change project notification to all', async function() {
it('send feedback', async function() {
await utils.common.topMenuOption(4);
let feedbackLightbox = $('div[tg-lb-feedback]');

View File

@ -36,7 +36,8 @@ common.browserSkip = function(browserName, name, fn) {
if (browser.browserName !== browserName) {
return it.call(this, name, fn);
} else {
return it.skip.call(this, name, fn);
// return it.skip.call(this, name, fn);
return it.call(this, name, fn);
}
};
@ -311,7 +312,7 @@ common.topMenuOption = async function(option) {
await browser.actions().mouseMove(menu).perform();
return menu.$$('li').get(option).click();
return menu.$$('li a').get(option).click();
};
common.goToBacklog = async function() {