From 85a0b1723b323c849f9db7dfdf1ba8ecfb0227fe Mon Sep 17 00:00:00 2001 From: fede erbes Date: Tue, 13 Aug 2024 13:06:45 +0200 Subject: [PATCH] fix: locator name for inputs and outputs button (#487) --- tests/pages/wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pages/wallet.ts b/tests/pages/wallet.ts index cb02d377..7565120b 100644 --- a/tests/pages/wallet.ts +++ b/tests/pages/wallet.ts @@ -539,7 +539,7 @@ export default class Wallet { this.containerFeeRate = page.getByTestId('feerate-container'); this.inputBTCAddress = page.locator('input[type="text"]'); this.inputBTCAmount = page.getByTestId('btc-amount'); - this.buttonExpand = page.getByRole('button', { name: 'Inputs & Outputs Dropdown' }); + this.buttonExpand = page.getByRole('button', { name: 'Inputs & Outputs' }); this.confirmTotalAmount = page.getByTestId('confirm-total-amount'); this.confirmCurrencyAmount = page.getByTestId('confirm-currency-amount'); this.confirmAmount = page.getByTestId('confirm-amount');