Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
388 views
in Technique[技术] by (71.8m points)

android - Espresso how to test button not enabled until 9 digits are entered

I am having problems testing my app.I am not new to testing but alot changes in our industry it is hard to keep up. I have this edittext that requires 9 numeric digits for the button start to be clicked, how can I test the button being disabled in espresso until the 9 numeric are entered?

question from:https://stackoverflow.com/questions/65912675/espresso-how-to-test-button-not-enabled-until-9-digits-are-entered

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can check the Enabled status of the button after entering the text in the EditText by using:

onView(withId(R.id.yourButtonId)).check(matches(isEnabled()))

Or you can also check whether it is disabled by using:

onView(withId(R.id.categoryContinueBtn)).check(matches(not(isEnabled())))


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...