From e9dfb09e0c0c373c07effa402b05d306f96e03e7 Mon Sep 17 00:00:00 2001 From: Martin D Kealey Date: Mon, 30 Aug 2021 17:54:15 +1000 Subject: [PATCH] Fixing stale tests --- test/issues/1670.test.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/issues/1670.test.js b/test/issues/1670.test.js index 1fa71ba..6e8178f 100644 --- a/test/issues/1670.test.js +++ b/test/issues/1670.test.js @@ -11,8 +11,9 @@ describe("#1670", function () { describe("creating a new container", function () { beforeEach(async function () { - await this.webExt.popup.helper.clickElementById("container-add-link"); - await this.webExt.popup.helper.clickElementById("edit-container-ok-link"); + await this.webExt.popup.helper.clickElementById("manage-containers-link"); + await this.webExt.popup.helper.clickElementById("new-container"); + await this.webExt.popup.helper.clickElementById("create-container-ok-link"); }); it("should create it in the browser as well", function () { @@ -75,4 +76,4 @@ describe("#1670", function () { }); }); }); -}); \ No newline at end of file +});