fix feedback e2e
parent
acb154c6d9
commit
f5e16048fd
|
@ -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]');
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue