File tree Expand file tree Collapse file tree
app/src/main/java/to/bitkit/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ fun WidgetsIntroScreen(
7474 fullWidth = false ,
7575 modifier = Modifier
7676 .weight(1f )
77- .testTag(" WidgetsOnboarding-view-organize " )
77+ .testTag(" WidgetsOnboardingViewOrganize " )
7878 )
7979 PrimaryButton (
8080 text = stringResource(R .string.widgets__add),
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ fun HardwareSheet(
126126 modifier = Modifier
127127 .fillMaxWidth()
128128 .sheetHeight(SheetSize .LARGE )
129- .testTag(" HardwareSheet " )
129+ .testTag(" HardwareWalletSheet " )
130130 ) {
131131 NavHost (
132132 navController = navController,
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ private fun Content(
6767 .fillMaxSize()
6868 .gradientBackground()
6969 .navigationBarsPadding()
70- .testTag(" HwFoundScreen " )
70+ .testTag(" HardwareWalletFoundScreen " )
7171 ) {
7272 SheetTopBar (titleText = stringResource(R .string.hardware__found_title))
7373 Column (
@@ -110,14 +110,18 @@ private fun Content(
110110 SecondaryButton (
111111 text = stringResource(R .string.common__cancel),
112112 onClick = onCancel,
113- modifier = Modifier .weight(1f )
113+ modifier = Modifier
114+ .weight(1f )
115+ .testTag(" HardwareWalletFoundCancel" )
114116 )
115117 PrimaryButton (
116118 text = stringResource(R .string.common__connect),
117119 onClick = onConnect,
118120 isLoading = isConnecting,
119121 enabled = ! isConnecting,
120- modifier = Modifier .weight(1f )
122+ modifier = Modifier
123+ .weight(1f )
124+ .testTag(" HardwareWalletFoundConnect" )
121125 )
122126 }
123127 VerticalSpacer (16 .dp)
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ private fun Content(
5252 .fillMaxSize()
5353 .gradientBackground()
5454 .navigationBarsPadding()
55- .testTag(" HwIntroScreen " )
55+ .testTag(" HardwareWalletIntroScreen " )
5656 ) {
5757 SheetTopBar (titleText = stringResource(R .string.hardware__intro_title))
5858 HwDeviceIllustrations (
@@ -76,12 +76,16 @@ private fun Content(
7676 SecondaryButton (
7777 text = stringResource(R .string.common__cancel),
7878 onClick = onCancel,
79- modifier = Modifier .weight(1f )
79+ modifier = Modifier
80+ .weight(1f )
81+ .testTag(" HardwareWalletIntroCancel" )
8082 )
8183 PrimaryButton (
8284 text = stringResource(R .string.common__continue),
8385 onClick = onContinue,
84- modifier = Modifier .weight(1f )
86+ modifier = Modifier
87+ .weight(1f )
88+ .testTag(" HardwareWalletIntroContinue" )
8589 )
8690 }
8791 }
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ private fun Content(
9494 .fillMaxSize()
9595 .gradientBackground()
9696 .navigationBarsPadding()
97- .testTag(" HwPairScreen " )
97+ .testTag(" HardwareWalletPairCodeScreen " )
9898 ) {
9999 SheetTopBar (titleText = stringResource(R .string.hardware__pairing_title))
100100 Column (
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ private fun Content(
6868 .gradientBackground()
6969 .navigationBarsPadding()
7070 .imePadding()
71- .testTag(" HwPairedScreen " )
71+ .testTag(" HardwareWalletPairedScreen " )
7272 ) {
7373 SheetTopBar (titleText = stringResource(R .string.hardware__paired_title))
7474 Column (
@@ -96,7 +96,7 @@ private fun Content(
9696 singleLine = true ,
9797 modifier = Modifier
9898 .fillMaxWidth()
99- .testTag(" HwPairedLabelField " )
99+ .testTag(" HardwareWalletLabelInput " )
100100 )
101101 }
102102 BoxWithConstraints (
@@ -119,7 +119,7 @@ private fun Content(
119119 onClick = onFinish,
120120 modifier = Modifier
121121 .padding(horizontal = 32 .dp)
122- .testTag(" HwPairedFinish " )
122+ .testTag(" HardwareWalletPairedFinish " )
123123 )
124124 VerticalSpacer (16 .dp)
125125 }
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ private fun Content(
7878 .fillMaxSize()
7979 .gradientBackground()
8080 .navigationBarsPadding()
81- .testTag(" HwSearchingScreen " )
81+ .testTag(" HardwareWalletSearchingScreen " )
8282 ) {
8383 SheetTopBar (titleText = stringResource(R .string.hardware__connect_title))
8484 Column (
@@ -116,6 +116,7 @@ private fun Content(
116116 SecondaryButton (
117117 text = stringResource(R .string.common__cancel),
118118 onClick = onCancel,
119+ modifier = Modifier .testTag(" HardwareWalletSearchingCancel" ),
119120 )
120121 }
121122 VerticalSpacer (16 .dp)
You can’t perform that action at this time.
0 commit comments