mirror of
https://github.com/bitwarden/android.git
synced 2025-03-15 18:58:59 +03:00
BIT-1907: Add element IDs to Generator Password Screen for Appium tests (#1067)
This commit is contained in:
parent
ece8bc9325
commit
fc85e1457c
1 changed files with 4 additions and 0 deletions
|
@ -724,6 +724,8 @@ private fun PasswordMinNumbersCounterItem(
|
|||
value = minNumbers.coerceIn(minValue, maxValue),
|
||||
range = minValue..maxValue,
|
||||
onValueChange = onPasswordMinNumbersCounterChange,
|
||||
increaseButtonTestTag = "MinNumberIncreaseButton",
|
||||
decreaseButtonTestTag = "MinNumberDecreaseButton",
|
||||
modifier = Modifier
|
||||
.semantics { testTag = "MinNumberValueLabel" }
|
||||
.padding(horizontal = 16.dp),
|
||||
|
@ -742,6 +744,8 @@ private fun PasswordMinSpecialCharactersCounterItem(
|
|||
value = minSpecial.coerceIn(minValue, maxValue),
|
||||
range = minValue..maxValue,
|
||||
onValueChange = onPasswordMinSpecialCharactersChange,
|
||||
increaseButtonTestTag = "MinSpecialIncreaseButton",
|
||||
decreaseButtonTestTag = "MinSpecialDecreaseButton",
|
||||
modifier = Modifier
|
||||
.semantics { testTag = "MinSpecialValueLabel" }
|
||||
.padding(horizontal = 16.dp),
|
||||
|
|
Loading…
Add table
Reference in a new issue