fix e2e tests

stable
Juanfran 2015-10-14 10:58:40 +02:00
parent 9b3203bd02
commit b5371910ce
2 changed files with 4 additions and 1 deletions

View File

@ -13,6 +13,9 @@ helper.saveWebHook = async function(name, email, key) {
await inputs.get(1).sendKeys(email);
await inputs.get(2).sendKeys(key);
// debounce
await browser.sleep(2000);
let newWebHook = await $('.add-new').isDisplayed();
if(newWebHook) {

View File

@ -8,7 +8,7 @@ var actions = {
let project = $$('div[tg-dropdown-project-list] li a').get(index);
project.click();
common.link(project);
common.waitLoader();
},