From b26270bd134b1afd96ce79be82252744a584532a Mon Sep 17 00:00:00 2001 From: Karsten Hassel Date: Fri, 11 Jun 2021 00:36:53 +0200 Subject: [PATCH] fix helloworld_spec tests --- tests/e2e/modules/helloworld_spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/modules/helloworld_spec.js b/tests/e2e/modules/helloworld_spec.js index 0ed12554..c2193276 100644 --- a/tests/e2e/modules/helloworld_spec.js +++ b/tests/e2e/modules/helloworld_spec.js @@ -26,7 +26,7 @@ describe("Test helloworld module", function () { }); it("Test message helloworld module", async function () { - const elem = await app.client.$("helloworld"); + const elem = await app.client.$(".helloworld"); return (elem.getText(".helloworld") === "Test HelloWorld Module"); }); }); @@ -38,7 +38,7 @@ describe("Test helloworld module", function () { }); it("Test message helloworld module", async function () { - const elem = await app.client.$("helloworld"); + const elem = await app.client.$(".helloworld"); return (elem.getText(".helloworld") === "Hello World!"); }); });