From f19465b3d6d37ae35eb0e76c8687c7879279e375 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 9 Oct 2024 09:28:39 +0200 Subject: [PATCH] Fix test --- test/test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.js b/test/test.js index f57896b..f4b9c16 100755 --- a/test/test.js +++ b/test/test.js @@ -157,6 +157,8 @@ describe('Application life cycle test', function () { } async function createRepo() { + await browser.get(`https://${app.fqdn}/repo/create`); + await browser.wait(until.elementLocated(By.id('repo_name'))); await browser.findElement(By.id('repo_name')).sendKeys(reponame); var button = browser.findElement(By.xpath('//button[contains(text(), "Create Repository")]')); await browser.executeScript('arguments[0].scrollIntoView(true)', button);