From 2a02112d879569a88b3b593ff02617900caf4263 Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Mon, 8 Dec 2025 09:55:21 -0800 Subject: [PATCH] fix autoscale selector --- test/sql/scaleAndSettings/scale.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sql/scaleAndSettings/scale.spec.ts b/test/sql/scaleAndSettings/scale.spec.ts index 6a488b79e..e83496b80 100644 --- a/test/sql/scaleAndSettings/scale.spec.ts +++ b/test/sql/scaleAndSettings/scale.spec.ts @@ -115,7 +115,7 @@ test.describe("Autoscale and Manual throughput", () => { }; const switchManualToAutoscaleThroughput = async (): Promise => { - const autoscaleRadioButton = explorer.frame.getByText("Autoscale"); + const autoscaleRadioButton = explorer.frame.getByText("Autoscale", { exact: true }); await autoscaleRadioButton.click(); await expect(explorer.commandBarButton(CommandBarButton.Save)).toBeEnabled(); await explorer.commandBarButton(CommandBarButton.Save).click();