-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ANDROID-15325 Compose Input test ids (#396)
* ANDROID-15325 Compose Input test tags * ANDROID-15325 add label test tag * ANDROID-15325 add test tag to regular text input * ANDROID-15325 set tag to correct composable
- Loading branch information
Showing
11 changed files
with
68 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 13 additions & 1 deletion
14
library/src/main/java/com/telefonica/mistica/compose/input/TextInputTestTags.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
package com.telefonica.mistica.compose.input | ||
|
||
object TextInputTestTags { | ||
const val TEXT_INPUT = "text_input" | ||
const val TEXT_INPUT = "TextField" | ||
const val PASSWORD_INPUT = "PasswordField" | ||
const val SEARCH_INPUT = "SearchField" | ||
const val PHONE_NUMBER_INPUT = "PhoneNumberField" | ||
const val EMAIL_INPUT = "EmailField" | ||
const val DECIMAL_INPUT = "DecimalField" | ||
const val LABEL = "label" | ||
const val HELPER_TEXT = "helperText" | ||
const val END_HELPER_TEXT = "endHelperText" | ||
const val ERROR_TEXT = "errorText" | ||
const val START_ICON = "startIcon" | ||
const val END_ICON = "endIcon" | ||
|
||
const val PASSWORD_VISIBILITY_TOGGLE = "password_visibility_toggle" | ||
const val CLEAR_SEARCH_BUTTON = "clear_search_button" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters