From b0dbdd0e1d7431d78c398810163c2ef401ff4c1b Mon Sep 17 00:00:00 2001 From: Jannik Stehle Date: Thu, 14 Apr 2022 14:33:18 +0200 Subject: [PATCH] Fix more e2e tests --- tests/e2e/support/objects/app-files/page/public.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/support/objects/app-files/page/public.ts b/tests/e2e/support/objects/app-files/page/public.ts index 56198384fad..2f5e85a3338 100644 --- a/tests/e2e/support/objects/app-files/page/public.ts +++ b/tests/e2e/support/objects/app-files/page/public.ts @@ -23,7 +23,7 @@ export class Public { async upload({ resources }: { resources: File[] }): Promise { await this.#page - .locator('//input[@id="file_upload_start" or @class="dz-hidden-input"]') + .locator('//input[@id="fileUploadInput"]') .setInputFiles(resources.map((file) => file.path)) } }