From 660204ac14e695390e61b3c1c6bd740c334939e3 Mon Sep 17 00:00:00 2001 From: openhands Date: Thu, 5 Mar 2026 22:41:00 +0000 Subject: [PATCH] fix: e2e test uses getByRole('combobox', { name: 'Tax' }) against a label 'Position Cost (Tax Rate)' (#467) --- tests/e2e/01-acquire-and-stake.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/01-acquire-and-stake.spec.ts b/tests/e2e/01-acquire-and-stake.spec.ts index d074131..b538e24 100644 --- a/tests/e2e/01-acquire-and-stake.spec.ts +++ b/tests/e2e/01-acquire-and-stake.spec.ts @@ -238,7 +238,7 @@ test.describe('Acquire & Stake', () => { await stakeAmountInput.fill('1000'); console.log('[TEST] Filled staking amount!'); - const taxSelect = page.getByRole('combobox', { name: 'Tax' }); + const taxSelect = page.getByRole('combobox', { name: 'Position Cost (Tax Rate)' }); console.log('[TEST] Selecting tax rate...'); await taxSelect.selectOption({ value: '2' }); console.log('[TEST] Tax rate selected!');