From eccd3215a78753b57a93dcf2273f55c0a48fcc7a Mon Sep 17 00:00:00 2001 From: Oleg Chendighelean Date: Mon, 9 Dec 2024 17:59:22 +0000 Subject: [PATCH] Fix tests --- apps/desktop-e2e/src/steps/onboarding.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/desktop-e2e/src/steps/onboarding.ts b/apps/desktop-e2e/src/steps/onboarding.ts index 711aa5c27..f32a436e0 100644 --- a/apps/desktop-e2e/src/steps/onboarding.ts +++ b/apps/desktop-e2e/src/steps/onboarding.ts @@ -29,6 +29,8 @@ Then("I am on {string} onboarding page", async function (this: CustomWorld, moda }); Then("I record generated seedphrase", async function (this: CustomWorld) { + await this.page.getByRole("button", { name: "Show seed phrase" }).click(); + const words: string[] = []; for (let i = 0; i < 24; i++) { words.push(await this.page.getByTestId(`mnemonic-word-${i}`).innerText());