Use the Espresso test framework for UI testing in an Android studio environment

Source: Internet
Author: User

Automate UI testing with the espresso framework for automated actions

Create a mainactivityinstrumentedtest Java file within a folder with the suffix androidtest

 Packagecom.example.test;Importandroid.support.test.filters.LargeTest;ImportAndroid.support.test.rule.ActivityTestRule;ImportANDROID.SUPPORT.TEST.RUNNER.ANDROIDJUNIT4;ImportOrg.junit.Rule;Importorg.junit.Test;ImportOrg.junit.runner.RunWith;Import StaticAndroid.support.test.espresso.Espresso.onView;Import StaticAndroid.support.test.espresso.action.ViewActions.click;Import StaticAndroid.support.test.espresso.action.ViewActions.closeSoftKeyboard;Import StaticAndroid.support.test.espresso.action.ViewActions.typeText;Import Staticandroid.support.test.espresso.assertion.ViewAssertions.matches;Import Staticandroid.support.test.espresso.matcher.ViewMatchers.withId;Import StaticAndroid.support.test.espresso.matcher.ViewMatchers.withText; the @RunWith (ANDROIDJUNIT4.class) @LargeTest Public classMainactivityinstrumentedtest {Private Static FinalString string_to_be_typed = "Him"; //What to write@Rule PublicActivitytestrule<mainactivity> Mainactivitytestrule =NewActivitytestrule<mainactivity> (mainactivity.class); @Test Public voidSayHello () {Onview (Withid (R.id.edittext)). Perform (TypeText (string_to_be_typed), Closesoftkeyboard ()); //gets the ID of the EditText and writes the value toOnview (Withtext ("Say hello") . Perform (click ()); //Use the Text position button of the control and implement the Click actionString Expectedtext = "Hello," + string_to_be_typed + "!"; //the correct output contentOnview (Withid (R.id.textview)). Check (Matches (Withtext (Expectedtext))); //gets the ID of the TextView, which is more consistent than the text on the control    }}

Run the test class, which will be executed automatically within the virtual machine

If correct, the display passed indicates that the

If an error is displayed, failed indicates that the test failed.

Use the Espresso test framework for UI testing in an Android studio environment

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.