@@ -42,7 +42,7 @@ fun HighBalanceWarningSheet(
4242 .sheetHeight(isModal = true )
4343 .gradientBackground()
4444 .navigationBarsPadding()
45- .testTag(" high_balance_intro_screen " )
45+ .testTag(" HighBalanceSheet " )
4646 ) {
4747 SheetTopBar (stringResource(R .string.other__high_balance__nav_title))
4848
@@ -56,15 +56,15 @@ fun HighBalanceWarningSheet(
5656 modifier = Modifier
5757 .fillMaxWidth()
5858 .weight(1f )
59- .testTag(" high_balance_image " )
59+ .testTag(" HighBalanceSheetImage " )
6060 )
6161
6262 Display (
6363 text = stringResource(R .string.other__high_balance__title).withAccent(accentColor = Colors .Yellow ),
6464 color = Colors .White ,
6565 modifier = Modifier
6666 .fillMaxWidth()
67- .testTag(" high_balance_title " )
67+ .testTag(" HighBalanceSheetTitle " )
6868 )
6969 VerticalSpacer (8 .dp)
7070 BodyM (
@@ -74,13 +74,13 @@ fun HighBalanceWarningSheet(
7474 ),
7575 color = Colors .White64 ,
7676 modifier = Modifier
77- .testTag(" high_balance_description " )
77+ .testTag(" HighBalanceSheetDescription " )
7878 )
7979 VerticalSpacer (32 .dp)
8080 Row (
8181 modifier = Modifier
8282 .fillMaxWidth()
83- .testTag(" buttons_row " ),
83+ .testTag(" HighBalanceSheetButtons " ),
8484 horizontalArrangement = Arrangement .spacedBy(16 .dp)
8585 ) {
8686 SecondaryButton (
@@ -89,7 +89,7 @@ fun HighBalanceWarningSheet(
8989 onClick = learnMoreClick,
9090 modifier = Modifier
9191 .weight(1f )
92- .testTag(" learn_more_button " ),
92+ .testTag(" HighBalanceSheetCancel " ),
9393 )
9494
9595 PrimaryButton (
@@ -98,7 +98,7 @@ fun HighBalanceWarningSheet(
9898 onClick = understoodClick,
9999 modifier = Modifier
100100 .weight(1f )
101- .testTag(" understood_button " ),
101+ .testTag(" HighBalanceSheetContinue " ),
102102 )
103103 }
104104 VerticalSpacer (16 .dp)
0 commit comments