From 901eb6323ed516735ef36b43a82ecb87f0d352ca Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Wed, 22 Feb 2017 08:24:47 +0100 Subject: [PATCH] Fixing block e2e tests --- e2e/helpers/detail-helper.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/helpers/detail-helper.js b/e2e/helpers/detail-helper.js index 3051b6fd..d6a1d676 100644 --- a/e2e/helpers/detail-helper.js +++ b/e2e/helpers/detail-helper.js @@ -261,8 +261,9 @@ helper.blockLightbox = function() { waitClose: function() { return utils.notifications.success.close(); }, - fill: function(text) { + fill: async function(text) { el.$('textarea').sendKeys(text); + await browser.waitForAngular(); }, submit: async function() { el.$('a.button-green').click();