From dbd1b8781a6b2dad14f65a64ad875a9b8e58853d Mon Sep 17 00:00:00 2001 From: Alex <33497058+bexsoft@users.noreply.github.com> Date: Tue, 25 Jan 2022 00:26:48 -0700 Subject: [PATCH] Fix aria for upload file button (#1451) --- portal-ui/tests/utils/elements.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal-ui/tests/utils/elements.ts b/portal-ui/tests/utils/elements.ts index fd28aa2ab..4bc012a1b 100644 --- a/portal-ui/tests/utils/elements.ts +++ b/portal-ui/tests/utils/elements.ts @@ -26,7 +26,7 @@ export const closeAlertButton = Selector( ); export const uploadButton = Selector("span") - .withAttribute("aria-label", "Upload file") + .withAttribute("aria-label", "Upload Files") .child("button:enabled"); export const createPolicyButton = Selector("button:enabled").withText("Create Policy");