From a966e40d077ab4bc810f688561380486e0f6011c Mon Sep 17 00:00:00 2001 From: Xiao Gui <xgui3783@gmail.com> Date: Wed, 4 Mar 2020 11:17:39 +0100 Subject: [PATCH] bugfix --- e2e/src/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/src/util.js b/e2e/src/util.js index 343b1b51c..7baa48efa 100644 --- a/e2e/src/util.js +++ b/e2e/src/util.js @@ -257,7 +257,7 @@ class WdIavPage extends WdLayoutPage{ const options = await this._browser.findElements( By.tagName('mat-option') ) - const idx = await getIndexFromArrayOfWebElements(title, options) + const idx = await _getIndexFromArrayOfWebElements(title, options) if (idx >= 0) await options[idx].click() else throw new Error(`${title} is not found as one of the dropdown templates`) } -- GitLab