@@ -39,8 +39,13 @@ export class WalletPage {
3939 readonly sendFormHeader : Locator ;
4040 readonly totalSent : Locator ;
4141 readonly receiveButton : Locator ;
42- readonly revealAddressButton : Locator ;
42+ readonly verifyAddressButton : Locator ;
4343 readonly copyAddressButton : Locator ;
44+ readonly receiveAddress : Locator ;
45+ readonly showNextAddressButton : Locator ;
46+ readonly addressCopiedModal : Locator ;
47+ readonly addressCopiedModalVerifyButton : Locator ;
48+ readonly addressCopiedModalSkipButton : Locator ;
4449 readonly stakingButton : Locator ;
4550 readonly signAndVerifyButton : Locator ;
4651 readonly stakingCardano : Locator ;
@@ -50,7 +55,6 @@ export class WalletPage {
5055 readonly fiatAmount : Locator ;
5156 readonly walletFilter = ( symbol : NetworkSymbol ) =>
5257 this . page . getByTestId ( `@account-menu/filter/${ symbol } ` ) ;
53- readonly showMoreButton : Locator ;
5458 readonly topPanelBalance : Locator ;
5559 readonly topPanelBalanceWithSymbol : Locator ;
5660 readonly addAccountButton : Locator ;
@@ -73,8 +77,10 @@ export class WalletPage {
7377 readonly discoveryWarning : Locator ;
7478 readonly usedAddress = ( index : number ) =>
7579 this . page . getByTestId ( `@wallet/receive/used-address/${ index } ` ) ;
76- readonly usedAddressRevealButton = ( index : number ) =>
77- this . page . getByTestId ( `@wallet/receive/reveal-address-button/${ index } ` ) ;
80+ readonly usedAddressVerifyButton = ( index : number ) =>
81+ this . page . getByTestId ( `@wallet/receive/used-address/${ index } /verify-button` ) ;
82+ readonly usedAddressCopyButton = ( index : number ) =>
83+ this . page . getByTestId ( `@wallet/receive/used-address/${ index } /copy-button` ) ;
7884
7985 constructor ( private readonly page : Page ) {
8086 this . transactionSearch = this . page . getByTestId ( '@wallet/accounts/search-icon' ) ;
@@ -97,8 +103,19 @@ export class WalletPage {
97103 this . sendFormHeader = this . page . getByTestId ( '@wallet/send-header' ) ;
98104 this . totalSent = this . page . getByTestId ( '@wallet/send/total-sent' ) ;
99105 this . receiveButton = this . page . getByTestId ( '@wallet/menu/wallet-receive' ) ;
100- this . revealAddressButton = this . page . getByTestId ( '@wallet/receive/reveal-address-button' ) ;
101- this . copyAddressButton = this . page . getByTestId ( '@metadata/copy-address-button' ) ;
106+ this . verifyAddressButton = this . page . getByTestId ( '@wallet/receive/verify-address-button' ) ;
107+ this . copyAddressButton = this . page . getByTestId ( '@wallet/receive/copy-address-button' ) ;
108+ this . receiveAddress = this . page . getByTestId ( '@wallet/receive/address' ) ;
109+ this . showNextAddressButton = this . page . getByTestId (
110+ '@wallet/receive/show-next-address-button' ,
111+ ) ;
112+ this . addressCopiedModal = this . page . getByTestId ( '@wallet/receive/address-copied-modal' ) ;
113+ this . addressCopiedModalVerifyButton = this . page . getByTestId (
114+ '@wallet/receive/address-copied-modal/verify-button' ,
115+ ) ;
116+ this . addressCopiedModalSkipButton = this . page . getByTestId (
117+ '@wallet/receive/address-copied-modal/skip-button' ,
118+ ) ;
102119 this . stakingButton = this . page . getByTestId ( '@wallet/menu/staking' ) ;
103120 this . signAndVerifyButton = this . page . getByTestId ( '@wallet/menu/wallet-sign-verify' ) ;
104121 this . stakingCardano = this . page . getByTestId ( '@wallet/cardano/staking' ) ;
@@ -108,7 +125,6 @@ export class WalletPage {
108125 this . transactionItem = this . page . getByTestId ( '@wallet/transaction-item' ) ;
109126 this . transactionAddress = this . page . getByTestId ( '@wallet/transaction/target-address' ) ;
110127 this . fiatAmount = this . page . getByTestId ( '@wallet/account/fiat-amount' ) . first ( ) ;
111- this . showMoreButton = this . page . getByTestId ( '@wallet/receive/used-address/show-more' ) ;
112128 this . topPanelBalance = this . page . getByTestId ( '@wallet/account/crypto-balance' ) ;
113129 this . topPanelBalanceWithSymbol = this . page . getByTestId (
114130 '@wallet/account/crypto-balance-with-symbol' ,
0 commit comments