We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I set the accessibility of a text field as follows:
OutlineTextField( value = email, onValueChange = viewModel::onEmailChange, keyboardOptions = KeyboardOptions( keyboardType = KeyboardType.Email, imeAction = ImeAction.Next ), modifier = Modifier .fillMaxWidth() .focusRequester(focusRequester) .semantics(mergeDescendants = true) { testTag = "email"; testTagsAsResourceId = true}, )
It says the element cannot have the value set, eg see attached screenshot
If you click on the edit text above and send it passes the text
I'm using the robot library to send the input text which find field by accessibility Id.
The text was updated successfully, but these errors were encountered:
I wondered if the "EditText" should have been selected. Or alternatively, https://github.com/appium/appium-uiautomator2-driver?tab=readme-ov-file#mobile-type may work after clicking the element
Sorry, something went wrong.
No branches or pull requests
I set the accessibility of a text field as follows:
It says the element cannot have the value set, eg see attached screenshot
If you click on the edit text above and send it passes the text
I'm using the robot library to send the input text which find field by accessibility Id.
The text was updated successfully, but these errors were encountered: