diff --git a/e2e/src/util.js b/e2e/src/util.js
index 343b1b51c475d86038f158e2e01369fac0c5c4cc..7baa48efaf3a26b3a1e1028e9b36ee99480b4b95 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`)
   }