From ef7a4b71afc0fc7785cfe9bb6398f1511d52f613 Mon Sep 17 00:00:00 2001 From: Lukas Giger Date: Tue, 17 Sep 2024 15:26:58 +0200 Subject: [PATCH] XIVY-12291 add missing await --- integrations/standalone/tests/pageobjects/Detail.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/standalone/tests/pageobjects/Detail.ts b/integrations/standalone/tests/pageobjects/Detail.ts index 91468768..f6352c56 100644 --- a/integrations/standalone/tests/pageobjects/Detail.ts +++ b/integrations/standalone/tests/pageobjects/Detail.ts @@ -79,7 +79,7 @@ export class Detail { await this.name.locator.fill(name); await this.type.locator.fill(type); if (persistent !== (await this.persistent.isChecked())) { - this.persistent.click(); + await this.persistent.click(); } await this.comment.locator.fill(comment); await this.annotations.locator.fill(annotations);